X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=scripts%2Fbuild%2Fclient.sh;h=d95bb95745974507eedad2e0761c4f7f99b99365;hb=ba430d7516bc5b1324b60571ba7594460969b7fb;hp=e3137df37fcfec5c01d8b41e062e075eae7ecca9;hpb=24a8e782d8b2adb208d9cfb8659450395e2e2a77;p=github%2FChocobozzz%2FPeerTube.git diff --git a/scripts/build/client.sh b/scripts/build/client.sh index e3137df37..d95bb9574 100755 --- a/scripts/build/client.sh +++ b/scripts/build/client.sh @@ -1,8 +1,68 @@ #!/bin/bash -cd client || exit -1 +set -eu + +pre_build_hook () { + mkdir "./src/pending_locale" > /dev/null || true + mv ./src/locale/angular.*.xlf "./src/pending_locale" + + if [ ! -z ${1+x} ]; then + mv "./src/pending_locale/angular.$1.xlf" "./src/locale" + fi +} + +post_build_hook () { + mv ./src/pending_locale/* "./src/locale" + rmdir "./src/pending_locale/" +} + +# Previous build failed +if [ ! -f "client/src/locale/angular.fr-FR.xlf" ]; then + git checkout -- client/src/locale/ + rm -r client/src/pending_locale +fi + +cd client rm -rf ./dist ./compiled -npm run ng build -- --prod --stats-json -NODE_ENV=production npm run webpack -- --config webpack/webpack.video-embed.js +pre_build_hook + +defaultLanguage="en-US" +npm run ng build -- --output-path "dist/$defaultLanguage/" --deploy-url "/client/$defaultLanguage/" --prod --stats-json +mv "./dist/$defaultLanguage/assets" "./dist" +mv "./dist/$defaultLanguage/manifest.webmanifest" "./dist/manifest.webmanifest" + +post_build_hook + +# Don't build other languages if --light arg is provided +if [ -z ${1+x} ] || [ "$1" != "--light" ]; then + if [ ! -z ${1+x} ] && [ "$1" == "--light-fr" ]; then + languages=("fr-FR") + else + # Supported languages + languages=( + "fi-FI" "nl-NL" "gd" "el-GR" "es-ES" "oc" "pt-BR" "pt-PT" "sv-SE" "pl-PL" "ru-RU" "zh-Hans-CN" "zh-Hant-TW" + "fr-FR" "ja-JP" "eu-ES" "ca-ES" "cs-CZ" "eo" "de-DE" "it-IT" + ) + fi + + for lang in "${languages[@]}"; do + # TODO: remove when the project will use runtime translations + pre_build_hook "$lang" + + npm run ng build -- --prod --i18n-file "./src/locale/angular.$lang.xlf" --i18n-format xlf --i18n-locale "$lang" \ + --output-path "dist/$lang/" --deploy-url "/client/$lang/" + + # Do not duplicate assets + rm -r "./dist/$lang/assets" + + # TODO: remove when the project will use runtime translations + post_build_hook + done +fi + +cd ../ && npm run build:embed && cd client/ + +# Copy runtime locales +cp -r "./src/locale" "./dist/locale"