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