From c99fc0d8fdd76ed644a65674e0fb5e6cf2466f52 Mon Sep 17 00:00:00 2001 From: Xin Li Date: Wed, 3 Feb 2021 09:47:16 -0800 Subject: [PATCH] use npm ci to replace npm install (#810) --- buildtools/publish.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/buildtools/publish.sh b/buildtools/publish.sh index 86a7d9c3..74a0631c 100644 --- a/buildtools/publish.sh +++ b/buildtools/publish.sh @@ -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..."