Create seperate update_dep.sh script to avoid up
This commit is contained in:
parent
678b318926
commit
5f8899a207
|
@ -207,6 +207,11 @@ module.exports = function(grunt) {
|
|||
version: version
|
||||
});
|
||||
|
||||
patchFile({
|
||||
fileName: 'npm-shrinkwrap.json',
|
||||
version: version
|
||||
});
|
||||
|
||||
patchFile({
|
||||
fileName: 'bower.json',
|
||||
version: version
|
||||
|
|
|
@ -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
25
update_deps.sh
Executable 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"
|
Loading…
Reference in New Issue
Block a user