From: Chocobozzz Date: Wed, 26 Apr 2017 19:46:56 +0000 (+0200) Subject: Client: fix compilation X-Git-Tag: v0.0.1-alpha~452 X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=d61e81538bb67899c23881b6fe921cdee4a3e49a;p=github%2FChocobozzz%2FPeerTube.git Client: fix compilation --- 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