diff --git a/docs/AUDIT_REDESIGN.md b/docs/AUDIT_REDESIGN.md index 75cba81..05b9fd2 100644 --- a/docs/AUDIT_REDESIGN.md +++ b/docs/AUDIT_REDESIGN.md @@ -69,7 +69,7 @@ Status: โฌœ open ยท ๐ŸŸฆ in PR ยท โœ… fixed (commit hash on the right). | --- | ---------------------------------------------------------------------------------------------------------------------------------- | :------: | :----: | ---------- | | E1 | Bundle is 1.08 MB (309 kB gzipped) โ€” Monaco is the bulk. Lazy-load Monaco via `React.lazy`. | ๐ŸŸ  | โœ… | 8a8c313 | | E2 | Root `pnpm-lock.yaml` doesn't contain `react-router-dom`, `@monaco-editor/react`, `@dnd-kit/*` (they were installed via `npm` in `web/` causing `web/package-lock.json` and `web/pnpm-lock.yaml` to appear). Workspace builds in CI will fail. **Partial fix**: stray subpackage lockfiles deleted + `.gitignore` updated to prevent recurrence. **Still TODO**: run `pnpm install -r --no-frozen-lockfile` from the repo root on a workstation that has `GITEA_NPM_TOKEN` exported (this session can't reach the private registry โ†’ mobile install fails). One-line follow-up commit. | ๐Ÿ”ด | โœ… | 3c9117f | -| E3 | Monaco's web workers (TS/JSON/CSS/HTML) are pulled at runtime from a CDN by default. Need explicit Vite config to bundle workers locally for offline / CSP-strict deployments. | ๐ŸŸก | โฌœ | | +| E3 | Monaco's web workers (TS/JSON/CSS/HTML) are pulled at runtime from a CDN by default. Need explicit Vite config to bundle workers locally for offline / CSP-strict deployments. | ๐ŸŸก | โœ… | e8b3c9c, e266a8b | | E4 | No README / docs section describing the new layout, env vars (`FMP_API_KEY`), or routes. | ๐ŸŸก | โฌœ | | ## F. Test coverage diff --git a/docs/COMPLETION_CHECKLIST.md b/docs/COMPLETION_CHECKLIST.md index 7efea6e..567d3aa 100644 --- a/docs/COMPLETION_CHECKLIST.md +++ b/docs/COMPLETION_CHECKLIST.md @@ -442,7 +442,7 @@ Expected platform result: Acceptance: code editor chunk is loaded only when needed, bundle size drops meaningfully, loading fallback is polished, and editor tests still pass. -- [ ] `E3` Bundle Monaco workers locally. +- [x] `E3` Bundle Monaco workers locally. Implementation: `e8b3c9c`, `e266a8b`. Acceptance: Vite config serves TS/JSON/CSS/HTML workers locally, no runtime CDN worker dependency remains, and CSP/offline deployment notes are updated.