From d61e81538bb67899c23881b6fe921cdee4a3e49a Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Wed, 26 Apr 2017 21:46:56 +0200 Subject: [PATCH] Client: fix compilation --- client/package.json | 2 +- scripts/build/client/dev.sh | 2 ++ scripts/build/client/prod.sh | 2 ++ 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/client/package.json b/client/package.json index 998ae8fcc..9a949951b 100644 --- a/client/package.json +++ b/client/package.json @@ -58,7 +58,7 @@ "ng-router-loader": "^1.0.2", "ng2-file-upload": "^1.1.4-2", "ng2-smart-table": "1.0.3", - "ng2-tag-input": "^1.0.5", + "ng2-tag-input": "1.0.5", "ngc-webpack": "2.0.0", "ngx-bootstrap": "1.6.6", "node-sass": "^4.1.1", diff --git a/scripts/build/client/dev.sh b/scripts/build/client/dev.sh index b75b72f12..1fd0ad416 100755 --- a/scripts/build/client/dev.sh +++ b/scripts/build/client/dev.sh @@ -2,4 +2,6 @@ cd client || exit -1 +rm -rf ./compiled + npm run webpack -- --config config/webpack.dev.js --progress --profile --colors --display-error-details --display-cached diff --git a/scripts/build/client/prod.sh b/scripts/build/client/prod.sh index e090e8082..65b67edcf 100755 --- a/scripts/build/client/prod.sh +++ b/scripts/build/client/prod.sh @@ -2,4 +2,6 @@ cd client || exit -1 +rm -rf ./compiled + npm run webpack -- --config config/webpack.prod.js --progress --profile --bail -- 2.25.1