Skip to content

Commit bd1a7db

Browse files
committed
Use npm ci instead of npm install in release script
In order not to update the package-lock.json file during releases.
1 parent dd2aa7c commit bd1a7db

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
"coverage": "nyc npm test",
4949
"lint": "eslint .",
5050
"docs": "jsdoc --configure .jsdocrc.js --destination docs --recurse README.md src && printf '%s' 'docs.openpgpjs.org' > docs/CNAME",
51-
"preversion": "rm -rf dist docs node_modules && npm install && npm test",
51+
"preversion": "rm -rf dist docs node_modules && npm ci && npm test",
5252
"version": "npm run docs && git add -A docs",
5353
"postversion": "git push && git push --tags && npm publish"
5454
},

0 commit comments

Comments
 (0)