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