PeerTube/scripts/build/client.sh

69 lines
1.8 KiB
Bash
Raw Normal View History

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