fix: dumb npm cli bug

This commit is contained in:
trev 2025-04-16 03:38:46 -04:00
parent dc1fb3b8b4
commit 35e6403067
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ next_version=$(echo "${version}" | awk -F. -v OFS=. '{$NF += 1 ; print}')
echo "bumping client"
cd "${git_root}/client"
npm version "${next_version}"
npm version "${next_version}" && npm i
git add package-lock.json
git add package.json

View File

@ -5,7 +5,7 @@ updated=false
echo "updating client"
cd "${git_root}/client"
npm update --save
npm update --save && npm i
if ! git diff --exit-code package.json package-lock.json; then
git add package-lock.json
git add package.json