Skip to content
Merged
Changes from 3 commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
aef45e5
remove addon jest
ndelangen Oct 6, 2025
eab3718
Enhance ESM compatibility checks and banner generation
ndelangen Oct 10, 2025
496b4e3
Refactor faux ESM require handling and update compatibility checks
ndelangen Oct 13, 2025
be44bdf
Refactor faux ESM require handling to improve insertion logic
ndelangen Oct 13, 2025
4692b5e
Refactor faux ESM require handling to use `import.meta.url` directly
ndelangen Oct 13, 2025
3d1074e
Enhance dirname usage detection in faux ESM require handling
ndelangen Oct 13, 2025
3b464c9
Remove `hasImport` function and related tests from mainConfigFile
ndelangen Oct 13, 2025
8f6f398
Enhance faux ESM require handling by preventing duplicate declarations
ndelangen Oct 13, 2025
37ca900
Update faux ESM require handling to conditionally add imports
ndelangen Oct 13, 2025
e2746f0
Merge branch 'next' into norbert/improve-esm-compat-automigration
ndelangen Oct 13, 2025
631ea19
fix preset migration note
JReinhold Oct 15, 2025
cb041b1
Merge branch 'next' into jeppe/fix-preset-migration-note
kylegach Oct 15, 2025
4a0464b
Merge pull request #32729 from storybookjs/jeppe/fix-preset-migration…
kylegach Oct 15, 2025
337a1c0
handle more esm issue use cases
yannbf Oct 15, 2025
c09c3ac
Docs: Fix A11y preview configuration example
jonniebigodes Oct 15, 2025
be58074
Merge pull request #32694 from storybookjs/norbert/improve-esm-compat…
yannbf Oct 15, 2025
eccece2
Merge branch 'next' into docs_fix_a11y_project_config_snippet_with_csf4
jonniebigodes Oct 15, 2025
5a23e52
Merge pull request #32733 from storybookjs/docs_fix_a11y_project_conf…
jonniebigodes Oct 15, 2025
bbff0e5
Update CHANGELOG.md for v9.1.11 [skip ci]
storybook-bot Oct 16, 2025
cc844cd
CLI: CSF factories codemod - support extracting annotations in npx co…
yannbf Oct 16, 2025
57f9c36
Update CHANGELOG.md for v9.1.12 [skip ci]
storybook-bot Oct 16, 2025
e9c4b29
Merge pull request #32741 from storybookjs/yann/fix-csf-codemod-getti…
yannbf Oct 16, 2025
1b756c7
Merge branch 'next' into norbert/remove-addon-jest
ndelangen Oct 17, 2025
ebf32a7
Merge pull request #32646 from storybookjs/norbert/remove-addon-jest
ndelangen Oct 17, 2025
ea560e1
Write changelog for 10.0.0-beta.13 [skip ci]
storybook-bot Oct 17, 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
8 changes: 4 additions & 4 deletions docs/_snippets/addon-a11y-config-in-preview.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default {
options: {},
},
},
globals: {
initialGlobals: {
a11y: {
// Optional flag to prevent the automatic check
manual: true,
Expand Down Expand Up @@ -58,7 +58,7 @@ const preview: Preview = {
options: {},
},
},
globals: {
initialGlobals: {
a11y: {
// Optional flag to prevent the automatic check
manual: true,
Expand Down Expand Up @@ -96,7 +96,7 @@ export default definePreview({
options: {},
},
},
globals: {
initialGlobals: {
a11y: {
// Optional flag to prevent the automatic check
manual: true,
Expand Down Expand Up @@ -134,7 +134,7 @@ export default definePreview({
options: {},
},
},
globals: {
initialGlobals: {
a11y: {
// Optional flag to prevent the automatic check
manual: true,
Expand Down
Loading