Fix/tsed dev watcher context - #607
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 834cb1e19f
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| "docs:dev": "yarn docs:build:ai && vitepress dev .", | ||
| "docs:build": "yarn docs:build:ai && vitepress build .", | ||
| "docs:dev": "vitepress dev .", | ||
| "docs:build": "vitepress build .", |
There was a problem hiding this comment.
Remove the stale AI-build call from the root workflow
The website workflow runs root yarn docs:build, whose api:build script still executes cd docs && yarn docs:build:ai; this change removes that script from docs/package.json, so the documented website build stops with “Couldn't find a script named docs:build:ai” before VitePress starts. Update the root scripts as part of this migration.
AGENTS.md reference: AGENTS.md:L9-L13
Useful? React with 👍 / 👎.
| title: "Ts.ED CLI a modern Node.js/Bun.js framework built with TypeScript to create interactive CLI applications", | ||
| vite: { | ||
| plugins: [ | ||
| buildLlmContentsPlugin({ |
There was a problem hiding this comment.
Generate the sidebar before loading the VitePress config
On the clean checkout used by .github/workflows/website.yml, docs/public/reference-sidebar.json is absent and gitignored, but the config eagerly imports it before Vite can reach this plugin's configResolved hook that creates it. After the stale root command is corrected, yarn docs:build will therefore fail while loading the config; generate the sidebar before launching VitePress or stop importing the generated file eagerly.
AGENTS.md reference: AGENTS.md:L9-L13
Useful? React with 👍 / 👎.
|
🎉 This PR is included in version 7.7.0 🎉 The release is available on:
Your semantic-release bot 📦🚀 |
No description provided.