mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-11 20:44:32 -05:00
* Highlight first suggestion when searching instead of the split option * Fix error * Try out react compiler * Fix typecheck errors * Increase --max-old-space-size * Increate --max-old-space-size in package-browser * Update config and versions * [autofix.ci] apply automated fixes * [autofix.ci] apply automated fixes (attempt 2/3) * Update versions * Fix typecheck errors * Revert some changes * Implement react compiler to take advantage of some performance improvements * Fixes * Remove unused packages --------- Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
23 lines
544 B
Bash
Executable File
23 lines
544 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
ROOT=`dirname $0`
|
|
|
|
cd "$ROOT/.."
|
|
|
|
echo "Updating translations..."
|
|
if ! [ -d packages/desktop-client/locale ]; then
|
|
git clone https://github.com/actualbudget/translations packages/desktop-client/locale
|
|
fi
|
|
pushd packages/desktop-client/locale > /dev/null
|
|
git checkout .
|
|
git pull
|
|
popd > /dev/null
|
|
packages/desktop-client/bin/remove-untranslated-languages
|
|
|
|
export NODE_OPTIONS="--max-old-space-size=4096"
|
|
|
|
yarn workspace loot-core build:browser
|
|
yarn workspace @actual-app/web build:browser
|
|
|
|
echo "packages/desktop-client/build"
|