diff options
author | Hailey <me@haileyok.com> | 2024-02-27 13:31:44 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-27 13:31:44 -0800 |
commit | 6717f8f11e69d12bcde3e5601ed02281b927c378 (patch) | |
tree | 3e9ca590def6458d22a754022a529b27ba0d819c /package.json | |
parent | 2a04546c7305b9bf03ea6cd26ce728ed773e2673 (diff) | |
download | voidsky-6717f8f11e69d12bcde3e5601ed02281b927c378.tar.zst |
Compile locale before build on CI, fix the google-services.json variable for android builds (#3001)
* compile intl before building, fix android json var * update intl:build
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package.json b/package.json index 4051849bf..2d520b4be 100644 --- a/package.json +++ b/package.json @@ -36,7 +36,7 @@ "perf:test:measure": "NODE_ENV=test flashlight test --bundleId xyz.blueskyweb.app --testCommand 'yarn perf:test' --duration 150000 --resultsFilePath .perf/results.json", "perf:test:results": "NODE_ENV=test flashlight report .perf/results.json", "perf:measure": "NODE_ENV=test flashlight measure", - "intl:build": "yarn intl:check && yarn intl:compile", + "intl:build": "yarn intl:extract && yarn intl:compile", "intl:check": "yarn intl:extract && git diff-index -G'(^[^\\*# /])|(^#\\w)|(^\\s+[^\\*#/])' HEAD || (echo '\n⚠️ i18n detected un-extracted translations\n' && exit 1)", "intl:extract": "lingui extract", "intl:compile": "lingui compile", |