Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
44b42f3
update tsup config to only output ESM
JReinhold Jul 21, 2025
ade228b
update export map, move @storybook/icons to devDependency, upgrade de…
JReinhold Jul 21, 2025
e1cd97a
cleanup comments
JReinhold Jul 21, 2025
44a02a4
CJS > ESM in root preset.js
JReinhold Aug 21, 2025
1e3259d
Fix default keywords
shilman Sep 17, 2025
f3150a5
Merge branch 'main' of github.com:storybookjs/addon-kit into esm-only
JReinhold Sep 25, 2025
6aec678
add index entry for CSF Factories support
JReinhold Sep 25, 2025
1adaa6c
fix build targets
JReinhold Sep 25, 2025
2976b50
reintroduce presets
yannbf Oct 6, 2025
096b3c7
fix exports again
yannbf Oct 6, 2025
5d605af
Add manager-helpers example
Sidnioulz Oct 20, 2025
ada12ff
Update package dependencies to use 'next' versions and add new devDep…
ndelangen Oct 21, 2025
3115ec8
Update GitHub Actions workflows to install dependencies without ignor…
ndelangen Oct 21, 2025
ee26c8c
Refactor welcome.js for improved readability and consistency in forma…
ndelangen Oct 21, 2025
1facf8f
switch to yarn because npm has a bug with optionalDependencies
ndelangen Oct 21, 2025
a682ef5
Update GitHub Actions workflows to use Yarn for dependency management…
ndelangen Oct 21, 2025
608519b
Add corepack enable step to GitHub Actions workflows
ndelangen Oct 21, 2025
ea6de39
Update .gitignore to include yarn install state and update yarn.lock …
ndelangen Oct 21, 2025
5c101de
deal with tsconfig error
ndelangen Oct 21, 2025
b32c936
Fix default keywords (#85)
Sidnioulz Oct 27, 2025
5502295
Switch to PNPM
Sidnioulz Oct 27, 2025
8e58d2f
Add ESLint support
Sidnioulz Oct 27, 2025
211d352
Fix condition to prevent release triggers on the template repo
Sidnioulz Oct 27, 2025
b51bdc3
CI: Cancel build on PR because it duplicates jobs
Sidnioulz Oct 27, 2025
221f630
Remove irrelevant pnpm rule I was testing out
Sidnioulz Oct 27, 2025
d7e22f0
Add manager-helpers example (#86)
Sidnioulz Oct 27, 2025
c5f3840
Remove dangling yarn RC file
Sidnioulz Oct 27, 2025
ecaa79d
Merge pull request #87 from storybookjs/switch-to-pnpm
ndelangen Oct 28, 2025
bb849ea
Refactor imports in manager.ts and manager-helpers.tsx for consistency
ndelangen Oct 28, 2025
187b38b
Apply suggestion from @Sidnioulz
JReinhold Oct 28, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 0 additions & 15 deletions .storybook/local-preset.cjs

This file was deleted.

12 changes: 12 additions & 0 deletions .storybook/local-preset.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import { fileURLToPath } from "node:url";

/**
* to load the built addon in this test Storybook
*/
export function previewAnnotations(entry = []) {
return [...entry, fileURLToPath(import.meta.resolve("../dist/preview.js"))];
}

export function managerEntries(entry = []) {
return [...entry, fileURLToPath(import.meta.resolve("../dist/manager.js"))];
}
2 changes: 1 addition & 1 deletion .storybook/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { defineMain } from "@storybook/react-vite/node";

const config = defineMain({
stories: ["../src/**/*.mdx", "../src/**/*.stories.@(js|jsx|ts|tsx)"],
addons: ["@storybook/addon-docs", "./local-preset.cjs"],
addons: ["@storybook/addon-docs", import.meta.resolve("./local-preset.ts")],
framework: "@storybook/react-vite",
});

Expand Down
3 changes: 0 additions & 3 deletions .storybook/preview-head.html

This file was deleted.

Loading
Loading