From 8906cdbab8ba9df567cfd20c45b24f28340da2ae Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Thu, 16 Apr 2015 16:35:38 -0700 Subject: [PATCH] chore(build): trigger npm postinstall when npm install is skipped we temporarily need this because some of our dependencies are being installed via npm postinstall --- tools/npm/install-dependencies.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/npm/install-dependencies.sh b/tools/npm/install-dependencies.sh index 1851d4ea6a..b4a828a00b 100755 --- a/tools/npm/install-dependencies.sh +++ b/tools/npm/install-dependencies.sh @@ -7,6 +7,8 @@ SHRINKWRAP_CACHED_FILE=node_modules/npm-shrinkwrap.cached.json if diff -q $SHRINKWRAP_FILE $SHRINKWRAP_CACHED_FILE; then echo 'No shrinkwrap changes detected. npm install will be skipped...'; + echo 'Running npm postinstall' + npm run postinstall else echo 'Blowing away node_modules and reinstalling npm dependencies...' rm -rf node_modules