Installing browserify should not update package.json

npm changed their behavior of 'npm install'. See
https://github.com/npm/npm/issues/17010

use --no-save option to avoid package.json changes
This commit is contained in:
Santhosh Thottingal
2019-08-29 16:16:07 +05:30
parent 0bd037d885
commit 619646082c

View File

@@ -23,7 +23,7 @@ then
else (
echo "Installing browserify"
cd "$BASEDIR";
npm install browserify
npm install --no-save browserify
) fi
echo "Transforming language-data"