Shrinkwrap dependencies on new release

This commit is contained in:
Tankred Hase 2016-01-29 19:25:17 +07:00
parent 539b445890
commit 8070120b45

View File

@ -12,6 +12,7 @@ if [ "$#" -ne 1 ] ; then
fi
# install dependencies
rm npm-shrinkwrap.json
rm -rf node_modules/
npm install
@ -21,6 +22,9 @@ grunt set_version --release=$1
# build and test
npm test
# shrinkwrap production and dev dependencies
npm shrinkwrap --dev
# Add build files to git
sed -i "" '/^dist\/$/d' .gitignore
git add dist/ *.json