Update build steps for localization

pull/3066/head
Chocobozzz 2020-08-12 10:29:44 +02:00
parent ef78fdbb2e
commit 8c36074799
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
2 changed files with 15 additions and 1 deletions

View File

@ -203,6 +203,16 @@
}
]
},
"i18n": {
"optimization": false,
"outputHashing": "none",
"sourceMap": true,
"extractCss": true,
"namedChunks": true,
"aot": true,
"buildOptimizer": false,
"budgets": []
},
"hmr": {
"budgets": [
{

View File

@ -36,6 +36,10 @@ if [ ! -z ${1+x} ] && [ "$1" == "--analyze-bundle" ]; then
export ANALYZE_BUNDLE=true
fi
if [ ! -z ${1+x} ] && [ "$1" == "--i18n" ]; then
additionalParams="--configuration=i18n"
export ANALYZE_BUNDLE=true
fi
defaultLanguage="en-US"
npm run ng build -- --output-path "dist/$defaultLanguage/" --deploy-url "/client/$defaultLanguage/" --prod --stats-json $additionalParams
@ -45,7 +49,7 @@ 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" ] && [ "$1" != "--analyze-bundle" ]); then
if [ -z ${1+x} ] || ([ "$1" != "--light" ] && [ "$1" != "--analyze-bundle" ] && [ "$1" != "--i18n" ]); then
if [ ! -z ${1+x} ] && [ "$1" == "--light-hu" ]; then
languages=(["hu"]="hu-HU")
elif [ ! -z ${1+x} ] && [ "$1" == "--light-ar" ]; then