diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-04-26 21:46:56 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-04-26 21:48:54 +0200 |
commit | d61e81538bb67899c23881b6fe921cdee4a3e49a (patch) | |
tree | 3e271e1a48002ec6ebe4b0484ac120fc277ef308 | |
parent | ab683a8e0d998cfd9dfb9562d3c616f3e6e1dbfd (diff) | |
download | PeerTube-d61e81538bb67899c23881b6fe921cdee4a3e49a.tar.gz PeerTube-d61e81538bb67899c23881b6fe921cdee4a3e49a.tar.zst PeerTube-d61e81538bb67899c23881b6fe921cdee4a3e49a.zip |
Client: fix compilation
-rw-r--r-- | client/package.json | 2 | ||||
-rwxr-xr-x | scripts/build/client/dev.sh | 2 | ||||
-rwxr-xr-x | scripts/build/client/prod.sh | 2 |
3 files changed, 5 insertions, 1 deletions
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 @@ | |||
58 | "ng-router-loader": "^1.0.2", | 58 | "ng-router-loader": "^1.0.2", |
59 | "ng2-file-upload": "^1.1.4-2", | 59 | "ng2-file-upload": "^1.1.4-2", |
60 | "ng2-smart-table": "1.0.3", | 60 | "ng2-smart-table": "1.0.3", |
61 | "ng2-tag-input": "^1.0.5", | 61 | "ng2-tag-input": "1.0.5", |
62 | "ngc-webpack": "2.0.0", | 62 | "ngc-webpack": "2.0.0", |
63 | "ngx-bootstrap": "1.6.6", | 63 | "ngx-bootstrap": "1.6.6", |
64 | "node-sass": "^4.1.1", | 64 | "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 @@ | |||
2 | 2 | ||
3 | cd client || exit -1 | 3 | cd client || exit -1 |
4 | 4 | ||
5 | rm -rf ./compiled | ||
6 | |||
5 | npm run webpack -- --config config/webpack.dev.js --progress --profile --colors --display-error-details --display-cached | 7 | 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 @@ | |||
2 | 2 | ||
3 | cd client || exit -1 | 3 | cd client || exit -1 |
4 | 4 | ||
5 | rm -rf ./compiled | ||
6 | |||
5 | npm run webpack -- --config config/webpack.prod.js --progress --profile --bail | 7 | npm run webpack -- --config config/webpack.prod.js --progress --profile --bail |