Create seperate update_dep.sh script to avoid up

This commit is contained in:
Tankred Hase 2016-01-30 18:44:17 +07:00
parent 678b318926
commit 5f8899a207
3 changed files with 30 additions and 6 deletions

View File

@ -207,6 +207,11 @@ module.exports = function(grunt) {
version: version
});
patchFile({
fileName: 'npm-shrinkwrap.json',
version: version
});
patchFile({
fileName: 'bower.json',
version: version

View File

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

25
update_deps.sh Executable file
View File

@ -0,0 +1,25 @@
#!/bin/sh
# go to root
cd `dirname $0`
# clear shrinkwrapped node_modules
rm npm-shrinkwrap.json
rm -rf node_modules/
# abort if tests fail
set -e
# install dependencies
npm install
# build and test
npm test
# shrinkwrap production and dev dependencies
npm shrinkwrap --dev
grunt fix_shrinkwrap
# Add build files to git
git add npm-shrinkwrap.json
git commit -m "Update npm dependencies and shrinkwrap"