PeerTube/scripts/build/client.sh

69 lines
1.8 KiB
Bash
Raw Normal View History

2018-06-28 14:56:46 +02:00
#!/bin/bash
2018-03-27 10:35:12 +02:00
set -eu
2018-07-25 09:57:52 +02:00
pre_build_hook () {
2019-11-07 15:33:23 +01:00
mkdir "./src/pending_locale" > /dev/null || true
mv ./src/locale/angular.*.xlf "./src/pending_locale"
2018-07-25 09:57:52 +02:00
if [ ! -z ${1+x} ]; then
2019-11-07 15:33:23 +01:00
mv "./src/pending_locale/angular.$1.xlf" "./src/locale"
2018-07-25 09:57:52 +02:00
fi
}
post_build_hook () {
2019-11-07 15:33:23 +01:00
mv ./src/pending_locale/* "./src/locale"
rmdir "./src/pending_locale/"
2018-07-25 09:57:52 +02:00
}
# Previous build failed
2019-11-07 15:33:23 +01:00
if [ ! -f "client/src/locale/angular.fr-FR.xlf" ]; then
git checkout -- client/src/locale/
rm -r client/src/pending_locale
fi
2018-03-27 10:35:12 +02:00
cd client
2017-12-13 17:51:32 +01:00
rm -rf ./dist ./compiled
2017-04-26 21:46:56 +02:00
2018-07-25 09:57:52 +02:00
pre_build_hook
2019-11-07 15:33:23 +01:00
defaultLanguage="en-US"
2018-05-31 18:12:15 +02:00
npm run ng build -- --output-path "dist/$defaultLanguage/" --deploy-url "/client/$defaultLanguage/" --prod --stats-json
mv "./dist/$defaultLanguage/assets" "./dist"
2018-09-28 13:55:51 +02:00
mv "./dist/$defaultLanguage/manifest.webmanifest" "./dist/manifest.webmanifest"
2018-05-31 18:12:15 +02:00
2018-07-25 09:57:52 +02:00
post_build_hook
# Don't build other languages if --light arg is provided
if [ -z ${1+x} ] || [ "$1" != "--light" ]; then
2018-08-16 10:48:35 +02:00
if [ ! -z ${1+x} ] && [ "$1" == "--light-fr" ]; then
2019-11-07 15:33:23 +01:00
languages=("fr-FR")
2018-08-16 10:48:35 +02:00
else
# Supported languages
2019-08-22 14:45:16 +02:00
languages=(
2019-11-07 15:33:23 +01:00
"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"
2019-08-22 14:45:16 +02:00
)
2018-08-16 10:48:35 +02:00
fi
for lang in "${languages[@]}"; do
2018-07-25 09:57:52 +02:00
# TODO: remove when the project will use runtime translations
pre_build_hook "$lang"
2019-11-07 15:33:23 +01:00
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/"
2019-05-14 08:39:42 +02:00
# Do not duplicate assets
rm -r "./dist/$lang/assets"
2018-07-25 09:57:52 +02:00
# TODO: remove when the project will use runtime translations
post_build_hook
done
fi
2018-05-31 18:12:15 +02:00
2019-12-17 15:33:58 +01:00
npm run build:embed
2018-05-31 18:12:15 +02:00
2018-06-06 18:17:24 +02:00
# Copy runtime locales
2019-11-07 15:33:23 +01:00
cp -r "./src/locale" "./dist/locale"