Monorepo for storybook-svelte-rsbuild — a Storybook framework that runs Svelte 5 components on top of Rsbuild / Rspack.
packages/storybook-svelte-rsbuild — the framework package (published to npm).examples/basic — a working Storybook with both .stories.ts and .stories.svelte.bun install
bun run build # build the framework package
bun run storybook # start the example on http://localhost:6006
bun run build-storybook # produce static Storybook
Changesets + GitHub Actions publish to npm and create a GitHub Release on every merged version-bump PR.
bunx changeset # describe the change (writes .changeset/*.md)
git add . && git commit -m "feat: ..."
git push # → workflow opens a "chore: version packages" PR
Merge that PR → next Release workflow run publishes to npm via the
automation token and creates a GitHub Release with autogenerated notes.
One-time setup: create an npm Automation Token, add as NPM_TOKEN
secret, and enable Read and write permissions +
Allow GitHub Actions to create and approve pull requests under
Settings → Actions → General.