You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/next-steps.md
+3-8Lines changed: 3 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,15 +15,10 @@ Focused follow-up work for `@knighted/develop`.
15
15
- Prefer CDN-delivered tooling where possible and preserve graceful fallback behavior when unavailable.
16
16
17
17
4.**In-browser component type checking**
18
-
- Explore TypeScript/JSX type checking for component source in-browser using CDN-delivered tooling.
19
-
- Keep diagnostics responsive and surface clear inline/editor feedback without blocking the preview loop.
18
+
- Add editor-linked diagnostics navigation so each issue can jump to the exact line/column in the component source.
19
+
- Surface line/column context directly in the diagnostics UI (not just message text) to speed up triage.
20
+
- Continue improving typecheck performance for first-run and large sources while keeping the preview loop non-blocking.
20
21
21
22
5.**In-browser component testing**
22
23
- Explore authoring and running component-focused tests in-browser (for example, a Vitest-compatible flow) using CDN-delivered tooling.
23
24
- Define a lightweight test UX that supports writing tests, running them on demand, and displaying results in-app.
24
-
25
-
6.**App runtime modularization**
26
-
- Plan a refactor that splits `src/app.js` into scoped modules organized by functionality (for example: diagnostics, render pipeline, editor integration, UI controls, and persistence).
27
-
- Preserve `src/app.js` as the main runtime orchestration entrypoint while moving implementation details into focused modules.
28
-
- Split stylesheet concerns into focused files (for example: layout/shell, panel controls, diagnostics, editor overrides, dialogs/overlays) while keeping `src/styles.css` as the single entrypoint via ordered `@import` directives.
29
-
- Define clear module boundaries and shared interfaces so behavior stays stable while maintainability and readability improve.
0 commit comments