From 4b6e610e567602d06c8b9fa0bbbe9bf718ac5fba Mon Sep 17 00:00:00 2001 From: Denys Vuika Date: Wed, 24 Aug 2016 11:10:53 +0100 Subject: [PATCH] Max cache for manual build-all script --- scripts/npm-build-all.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/npm-build-all.sh b/scripts/npm-build-all.sh index a53091a2d4..538c056cfe 100755 --- a/scripts/npm-build-all.sh +++ b/scripts/npm-build-all.sh @@ -18,6 +18,6 @@ do DESTDIR="$DIR/../ng2-components/${PACKAGE}" echo "====== build components : ${PACKAGE} =====" cd "$DESTDIR" - npm install + npm install --cache-min 9999999 npm run build -done \ No newline at end of file +done