From 5f8899a20799aec3a1aca2791a713668746a3151 Mon Sep 17 00:00:00 2001 From: Tankred Hase Date: Sat, 30 Jan 2016 18:44:17 +0700 Subject: [PATCH] Create seperate update_dep.sh script to avoid up --- Gruntfile.js | 5 +++++ release.sh | 6 ------ update_deps.sh | 25 +++++++++++++++++++++++++ 3 files changed, 30 insertions(+), 6 deletions(-) create mode 100755 update_deps.sh diff --git a/Gruntfile.js b/Gruntfile.js index 22e6a3b8..5560aa0c 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -207,6 +207,11 @@ module.exports = function(grunt) { version: version }); + patchFile({ + fileName: 'npm-shrinkwrap.json', + version: version + }); + patchFile({ fileName: 'bower.json', version: version diff --git a/release.sh b/release.sh index 8792c43a..4384c685 100755 --- a/release.sh +++ b/release.sh @@ -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 diff --git a/update_deps.sh b/update_deps.sh new file mode 100755 index 00000000..f556616c --- /dev/null +++ b/update_deps.sh @@ -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"