Unpublish npm-shrinkwrap.json (#1079)

This commit is contained in:
Daniel Huigens 2020-04-15 11:25:27 +02:00 committed by GitHub
parent 6119dbb08e
commit 9b51349ce3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 8 deletions

View File

@ -318,7 +318,7 @@ module.exports = function(grunt) {
}); });
patchFile({ patchFile({
fileName: 'npm-shrinkwrap.json', fileName: 'package-lock.json',
version: version version: version
}); });

View File

@ -25,7 +25,7 @@ npm run build
grunt test grunt test
# Add build files to git # Add build files to git
git add --force dist/ bower.json npm-shrinkwrap.json package.json git add --force dist/ bower.json package-lock.json package.json
git commit -m "Release new version" git commit -m "Release new version"
git tag v$1 git tag v$1
git push git push

View File

@ -4,7 +4,7 @@
cd `dirname $0` cd `dirname $0`
# clear shrinkwrapped node_modules # clear shrinkwrapped node_modules
rm npm-shrinkwrap.json rm package-lock.json
rm -rf node_modules/ rm -rf node_modules/
# abort if tests fail # abort if tests fail
@ -16,9 +16,6 @@ npm install
# build and test # build and test
npm test npm test
# shrinkwrap production and dev dependencies
npm shrinkwrap --dev
# Add build files to git # Add build files to git
git add npm-shrinkwrap.json git add package-lock.json
git commit -m "Update npm dependencies and shrinkwrap" git commit -m "Update npm dependencies and package lock"