diff options
author | Chocobozzz <me@florianbigard.com> | 2021-08-18 10:32:40 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-08-18 10:32:40 +0200 |
commit | 33a53638c2b7a41a4e39558582f604d3036d4fa3 (patch) | |
tree | 4d68302f4be0a64a41955ff590db0977dd78b3a3 | |
parent | 64ef55f7c86c450d7264b6e6623c1c298657e9cb (diff) | |
download | PeerTube-33a53638c2b7a41a4e39558582f604d3036d4fa3.tar.gz PeerTube-33a53638c2b7a41a4e39558582f604d3036d4fa3.tar.zst PeerTube-33a53638c2b7a41a4e39558582f604d3036d4fa3.zip |
Embed stats only when needed
-rwxr-xr-x | scripts/build/client.sh | 2 | ||||
-rwxr-xr-x | scripts/build/embed.sh | 6 |
2 files changed, 7 insertions, 1 deletions
diff --git a/scripts/build/client.sh b/scripts/build/client.sh index 5ecbff28d..e891b217c 100755 --- a/scripts/build/client.sh +++ b/scripts/build/client.sh | |||
@@ -69,6 +69,8 @@ else | |||
69 | additionalParams="" | 69 | additionalParams="" |
70 | if [ ! -z ${1+x} ] && [ "$1" == "--analyze-bundle" ]; then | 70 | if [ ! -z ${1+x} ] && [ "$1" == "--analyze-bundle" ]; then |
71 | additionalParams="--namedChunks=true --outputHashing=none" | 71 | additionalParams="--namedChunks=true --outputHashing=none" |
72 | |||
73 | # For webpack | ||
72 | export ANALYZE_BUNDLE=true | 74 | export ANALYZE_BUNDLE=true |
73 | fi | 75 | fi |
74 | 76 | ||
diff --git a/scripts/build/embed.sh b/scripts/build/embed.sh index a243ce640..66044759f 100755 --- a/scripts/build/embed.sh +++ b/scripts/build/embed.sh | |||
@@ -6,4 +6,8 @@ cd client | |||
6 | 6 | ||
7 | mkdir -p ./dist/standalone/videos/ | 7 | mkdir -p ./dist/standalone/videos/ |
8 | 8 | ||
9 | NODE_ENV=production npm run webpack -- --config webpack/webpack.video-embed.js --mode production --json > "./dist/standalone/videos/embed-stats.json" | 9 | if [ ! -z ${ANALYZE_BUNDLE+x} ] && [ "$ANALYZE_BUNDLE" == true ]; then |
10 | NODE_ENV=production npm run webpack -- --config webpack/webpack.video-embed.js --mode production --json > "./dist/standalone/videos/embed-stats.json" | ||
11 | else | ||
12 | NODE_ENV=production npm run webpack -- --config webpack/webpack.video-embed.js --mode production | ||
13 | fi | ||