Skip to content

Commit

Permalink
use npm ci to replace npm install (#810)
Browse files Browse the repository at this point in the history
  • Loading branch information
xil222 committed Feb 3, 2021
1 parent 7154898 commit c99fc0d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions buildtools/publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,9 @@ if [ ! -s CHANGELOG.md ]; then
fi
echo "Made sure there is a changelog."

echo "Running npm install..."
npm install
echo "Ran npm install."
echo "Running npm ci..."
npm ci
echo "Ran npm ci."

CURRENT_VERSION=$(jq -r ".version" package.json)
echo "Making a $VERSION version..."
Expand Down

0 comments on commit c99fc0d

Please sign in to comment.