fix: improve lingui configuration (#1388)

## Description

Currently merge conflicts arise due to the compiled JS and PO
translation files.

This PR is a rework on how we handle extracting and compiling
translations to streamline PRs and merging branches.

## Changes Made

- Remove compiled translation files from being committed
- Extract and compile translations only on build
- Extract will still occur when commits land on main to sync and pull
new translations with Crowdin
This commit is contained in:
David Nguyen
2024-10-09 14:13:52 +11:00
committed by GitHub
parent 2c1a18bafc
commit 9ffdbe9c81
18 changed files with 22 additions and 64 deletions

View File

@ -5,7 +5,7 @@
"license": "AGPL-3.0",
"scripts": {
"dev": "next dev -p 3000",
"build": "next build",
"build": "turbo run translate:extract && turbo run translate:compile && next build",
"start": "next start",
"lint": "next lint",
"e2e:prepare": "next build && next start",