Remove the compiled lang files, compile on dev server and when building in ci

This avoids confusion for new translators
This commit is contained in:
Jamie Curnow
2025-11-13 14:21:32 +10:00
parent e5aae1f365
commit 79a9653b26
12 changed files with 27 additions and 1753 deletions

View File

@@ -16,7 +16,7 @@ if hash docker 2>/dev/null; then
-e NODE_OPTIONS=--openssl-legacy-provider \
-v "$(pwd)/frontend:/app/frontend" \
-w /app/frontend "${DOCKER_IMAGE}" \
sh -c "yarn install && yarn lint && yarn vitest run && yarn build && chown -R $(id -u):$(id -g) /app/frontend"
sh -c "yarn install && yarn lint && yarn locale-compile && yarn vitest run && yarn build && chown -R $(id -u):$(id -g) /app/frontend"
echo -e "${BLUE} ${GREEN}Building Frontend Complete${RESET}"
else