aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2021-02-02 15:33:58 +0100
committerChocobozzz <me@florianbigard.com>2021-02-02 15:37:18 +0100
commit29f148a61381727a432c22a71c7a2b7cc23d9c9e (patch)
treed8830f17bc7e1a98484240a9977e208699da1d00 /scripts
parent69eddafb17c4cf8e5a6dbd19e6d216c58140d153 (diff)
downloadPeerTube-29f148a61381727a432c22a71c7a2b7cc23d9c9e.tar.gz
PeerTube-29f148a61381727a432c22a71c7a2b7cc23d9c9e.tar.zst
PeerTube-29f148a61381727a432c22a71c7a2b7cc23d9c9e.zip
Add ability to build client with source maps
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/build/client.sh7
-rwxr-xr-xscripts/nightly.sh2
2 files changed, 7 insertions, 2 deletions
diff --git a/scripts/build/client.sh b/scripts/build/client.sh
index 0e7925be5..fd072b18c 100755
--- a/scripts/build/client.sh
+++ b/scripts/build/client.sh
@@ -43,7 +43,12 @@ rm -rf ./dist ./compiled
43 43
44# Don't build other languages if --light arg is provided 44# Don't build other languages if --light arg is provided
45if [ -z ${1+x} ] || ([ "$1" != "--light" ] && [ "$1" != "--analyze-bundle" ]); then 45if [ -z ${1+x} ] || ([ "$1" != "--light" ] && [ "$1" != "--analyze-bundle" ]); then
46 npm run ng build -- --prod --output-path "dist/build" 46 additionalParams=""
47 if [ ! -z ${1+x} ] && [ "$1" == "--source-map" ]; then
48 additionalParams="--sourceMap=true"
49 fi
50
51 npm run ng build -- --prod --output-path "dist/build" $additionalParams
47 52
48 for key in "${!languages[@]}"; do 53 for key in "${!languages[@]}"; do
49 lang=${languages[$key]} 54 lang=${languages[$key]}
diff --git a/scripts/nightly.sh b/scripts/nightly.sh
index c4c6f87b5..5ad603929 100755
--- a/scripts/nightly.sh
+++ b/scripts/nightly.sh
@@ -18,7 +18,7 @@ today=$(date '+%F')
18directory_name="peertube-nightly-$today" 18directory_name="peertube-nightly-$today"
19tar_name="peertube-nightly-$today.tar.xz" 19tar_name="peertube-nightly-$today.tar.xz"
20 20
21npm run build 21npm run build -- --source-map
22 22
23nightly_version="nightly-$today" 23nightly_version="nightly-$today"
24sed -i 's/"version": "\([^"]\+\)"/"version": "\1-'"$nightly_version"'"/' ./package.json 24sed -i 's/"version": "\([^"]\+\)"/"version": "\1-'"$nightly_version"'"/' ./package.json