2018-06-28 08:56:46 -04:00
|
|
|
#!/bin/bash
|
2016-06-03 16:47:55 -04:00
|
|
|
|
2018-03-27 04:35:12 -04:00
|
|
|
set -eu
|
|
|
|
|
2020-02-07 09:51:19 -05:00
|
|
|
declare -A languages
|
2020-08-12 04:40:04 -04:00
|
|
|
defaultLanguage="en-US"
|
2020-02-07 09:51:19 -05:00
|
|
|
|
2020-08-12 04:40:04 -04:00
|
|
|
# Supported languages
|
|
|
|
languages=(
|
|
|
|
["ar"]="ar"
|
2023-02-13 04:17:53 -05:00
|
|
|
["is"]="is"
|
2022-03-03 04:54:52 -05:00
|
|
|
["fa"]="fa-IR"
|
2020-08-12 04:40:04 -04:00
|
|
|
["en"]="en-US"
|
|
|
|
["vi"]="vi-VN"
|
|
|
|
["hu"]="hu-HU"
|
|
|
|
["th"]="th-TH"
|
|
|
|
["fi"]="fi-FI"
|
|
|
|
["nl"]="nl-NL"
|
|
|
|
["gd"]="gd"
|
|
|
|
["el"]="el-GR"
|
|
|
|
["es"]="es-ES"
|
|
|
|
["oc"]="oc"
|
|
|
|
["pt"]="pt-BR"
|
|
|
|
["pt-PT"]="pt-PT"
|
|
|
|
["sv"]="sv-SE"
|
|
|
|
["pl"]="pl-PL"
|
|
|
|
["ru"]="ru-RU"
|
|
|
|
["zh-Hans"]="zh-Hans-CN"
|
|
|
|
["zh-Hant"]="zh-Hant-TW"
|
|
|
|
["fr"]="fr-FR"
|
|
|
|
["ja"]="ja-JP"
|
|
|
|
["eu"]="eu-ES"
|
|
|
|
["ca"]="ca-ES"
|
2020-12-16 05:45:12 -05:00
|
|
|
["gl"]="gl-ES"
|
2020-08-12 04:40:04 -04:00
|
|
|
["cs"]="cs-CZ"
|
2022-07-11 10:25:43 -04:00
|
|
|
["hr"]="hr"
|
2020-08-12 04:40:04 -04:00
|
|
|
["eo"]="eo"
|
|
|
|
["de"]="de-DE"
|
|
|
|
["it"]="it-IT"
|
2023-02-13 10:25:53 -05:00
|
|
|
["uk"]="uk-UA"
|
2021-03-09 05:34:46 -05:00
|
|
|
["sq"]="sq"
|
2022-06-24 05:51:30 -04:00
|
|
|
["tok"]="tok"
|
2021-12-13 11:06:44 -05:00
|
|
|
["nn"]="nn"
|
|
|
|
["nb"]="nb-NO"
|
2020-08-12 04:40:04 -04:00
|
|
|
["kab"]="kab"
|
|
|
|
)
|
2018-08-16 05:11:20 -04:00
|
|
|
|
2018-03-27 04:35:12 -04:00
|
|
|
cd client
|
2016-06-03 16:47:55 -04:00
|
|
|
|
2021-06-17 04:43:34 -04:00
|
|
|
rm -rf ./dist
|
2017-04-26 15:46:56 -04:00
|
|
|
|
2018-07-18 03:52:46 -04:00
|
|
|
# Don't build other languages if --light arg is provided
|
2020-11-26 02:52:43 -05:00
|
|
|
if [ -z ${1+x} ] || ([ "$1" != "--light" ] && [ "$1" != "--analyze-bundle" ]); then
|
2021-02-02 09:33:58 -05:00
|
|
|
additionalParams=""
|
|
|
|
if [ ! -z ${1+x} ] && [ "$1" == "--source-map" ]; then
|
2022-06-14 02:26:35 -04:00
|
|
|
additionalParams="--source-map=true"
|
2021-02-02 09:33:58 -05:00
|
|
|
fi
|
|
|
|
|
2021-07-05 09:19:23 -04:00
|
|
|
node --max_old_space_size=8192 node_modules/.bin/ng build --configuration production --output-path "dist/build" $additionalParams
|
2018-07-18 03:52:46 -04:00
|
|
|
|
2020-02-07 09:51:19 -05:00
|
|
|
for key in "${!languages[@]}"; do
|
|
|
|
lang=${languages[$key]}
|
|
|
|
|
2020-08-12 04:40:04 -04:00
|
|
|
mv "dist/build/$key" "dist/$lang"
|
2018-07-25 03:57:52 -04:00
|
|
|
|
2020-08-12 04:40:04 -04:00
|
|
|
if [ "$lang" != "en-US" ]; then
|
|
|
|
# Do not duplicate assets
|
|
|
|
rm -r "./dist/$lang/assets"
|
|
|
|
fi
|
|
|
|
done
|
2020-02-07 09:51:19 -05:00
|
|
|
|
2020-08-12 04:40:04 -04:00
|
|
|
mv "./dist/$defaultLanguage/assets" "./dist"
|
2020-02-12 08:09:24 -05:00
|
|
|
|
2020-08-12 04:40:04 -04:00
|
|
|
rmdir "dist/build"
|
|
|
|
else
|
|
|
|
additionalParams=""
|
|
|
|
if [ ! -z ${1+x} ] && [ "$1" == "--analyze-bundle" ]; then
|
2022-06-13 09:15:20 -04:00
|
|
|
additionalParams="--named-chunks=true --output-hashing=none"
|
2021-08-18 04:32:40 -04:00
|
|
|
|
|
|
|
# For webpack
|
2020-08-12 04:40:04 -04:00
|
|
|
export ANALYZE_BUNDLE=true
|
|
|
|
fi
|
2018-07-18 03:52:46 -04:00
|
|
|
|
2021-07-05 09:19:23 -04:00
|
|
|
node --max_old_space_size=8192 node_modules/.bin/ng build --localize=false --output-path "dist/$defaultLanguage/" \
|
2022-06-13 09:15:20 -04:00
|
|
|
--configuration production --stats-json $additionalParams
|
2018-07-18 03:52:46 -04:00
|
|
|
fi
|
2018-05-31 12:12:15 -04:00
|
|
|
|
2021-01-18 05:16:37 -05:00
|
|
|
cp "./dist/$defaultLanguage/manifest.webmanifest" "./dist/manifest.webmanifest"
|
2020-12-12 22:15:27 -05:00
|
|
|
|
2020-08-06 04:26:39 -04:00
|
|
|
cd ../ && npm run build:embed && cd client/
|
2018-05-31 12:12:15 -04:00
|
|
|
|
2018-06-06 12:17:24 -04:00
|
|
|
# Copy runtime locales
|
2019-11-07 09:33:23 -05:00
|
|
|
cp -r "./src/locale" "./dist/locale"
|