mirror of
https://github.com/actualbudget/actual.git
synced 2026-07-26 02:43:26 -05:00
* [AI] Enable React Compiler for all monorepo packages with React code The compiler was previously scoped to desktop-client/src only. Now: - desktop-client's Vite build also compiles component-library source (consumed as raw source through the same build), covering web, desktop, and mobile bundles - component-library's Storybook and Vitest pipelines apply the compiler so they exercise the same compiled output - docs (Docusaurus) enables babel-plugin-react-compiler for the site's own React components Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01PdcKq244khwKhedvLCwu7p * [AI] Declare npm-run-all in component-library so its test script resolves Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01PdcKq244khwKhedvLCwu7p * [AI] Generalize React Compiler include to any workspace package source Match packages/<name>/src instead of enumerating package names, so a future workspace library with React components is compiled automatically. Third-party code stays out via the babel plugin's default node_modules exclude, which applies alongside a custom include. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01PdcKq244khwKhedvLCwu7p * [AI] Inline component-library test script instead of using npm-run-all Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01PdcKq244khwKhedvLCwu7p * [AI] Drop React Compiler from docs The docs site is static content with a handful of simple components, so auto-memoization buys nothing there, and an unscoped babel plugin would also process Docusaurus theme code and every MDX page. Reverting keeps the compiler where it pays off: desktop-client and component-library. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01PdcKq244khwKhedvLCwu7p --------- Co-authored-by: Claude <noreply@anthropic.com>
149 B
149 B
category, authors
| category | authors | |
|---|---|---|
| Maintenance |
|
Enable React Compiler for all monorepo packages with React code instead of only desktop-client