Skip to content
Discussion options

You must be logged in to vote

There's no single root-level watch command right now — no turbo.json in the repo, and the root package.json has no dev/watch script. The documented flow (see CONTRIBUTING.md) is one terminal per package you're actively editing:

# Terminal 1
cd packages/core && pnpm dev   # tsdown --watch
# Terminal 2
cd demos/simple && pnpm dev    # astro dev, picks up the watched output via workspace:*

Each package defines its own "dev": "tsdown --watch" (or similar). Once each watcher is running, changes do propagate to the site automatically — it's just per-package rather than a single repo-wide command, so editing core + a plugin at once means a terminal for each.

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by cuchakma
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants