diff --git a/docs/AUDIT_REDESIGN.md b/docs/AUDIT_REDESIGN.md index 22da50f..75cba81 100644 --- a/docs/AUDIT_REDESIGN.md +++ b/docs/AUDIT_REDESIGN.md @@ -67,7 +67,7 @@ Status: โฌœ open ยท ๐ŸŸฆ in PR ยท โœ… fixed (commit hash on the right). | # | Issue | Severity | Status | Fix commit | | --- | ---------------------------------------------------------------------------------------------------------------------------------- | :------: | :----: | ---------- | -| E1 | Bundle is 1.08 MB (309 kB gzipped) โ€” Monaco is the bulk. Lazy-load Monaco via `React.lazy`. | ๐ŸŸ  | โฌœ | | +| 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. | ๐ŸŸก | โฌœ | | | E4 | No README / docs section describing the new layout, env vars (`FMP_API_KEY`), or routes. | ๐ŸŸก | โฌœ | | diff --git a/docs/COMPLETION_CHECKLIST.md b/docs/COMPLETION_CHECKLIST.md index c46b5a8..7efea6e 100644 --- a/docs/COMPLETION_CHECKLIST.md +++ b/docs/COMPLETION_CHECKLIST.md @@ -438,7 +438,7 @@ Expected platform result: ### Phase 5 - Build, Docs, and Deployment Hardening -- [ ] `E1` Lazy-load Monaco. +- [x] `E1` Lazy-load Monaco. Implementation: `8a8c313`. Acceptance: code editor chunk is loaded only when needed, bundle size drops meaningfully, loading fallback is polished, and editor tests still pass.