Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
311c268
Fix formatting in downgrade message for major version blocker
ndelangen Oct 16, 2025
2adce21
Addon Vitest: Support modifying mergeConfig on addon setup
yannbf Oct 17, 2025
1049588
Docs: Adjust Addon jest location
jonniebigodes Oct 17, 2025
aa5d4f6
fix
yannbf Oct 17, 2025
b6a3c4a
use git diffs on tests
yannbf Oct 17, 2025
f47e861
Merge pull request #32753 from storybookjs/yann/support-mergeconfig-v…
yannbf Oct 17, 2025
5347341
docs: hint about using "good first issue" for quick frontend contribu…
shahabhilash Oct 19, 2025
216d826
Docs: Update addon migration guide for 10.0
Sidnioulz Oct 10, 2025
c2b34da
Docs: Fix typos
Sidnioulz Oct 13, 2025
95d021b
Docs: Fix typos
Sidnioulz Oct 13, 2025
0f59035
Docs: Update addon migration guide with Kyle improvements
Sidnioulz Oct 20, 2025
6d7ff1d
Merge pull request #32714 from storybookjs/sidnioulz/addon-migration-…
vanessayuenn Oct 20, 2025
ec8becc
Update migration guide link in major version downgrade message
ndelangen Oct 20, 2025
354a48f
Merge branch 'next' into norbert/improve-downgrade-blocker-messaging
ndelangen Oct 20, 2025
b953830
use `next` version of test-runner
ndelangen Oct 20, 2025
e6129d7
Merge branch 'next' into shahabhilash-docs/add-good-first-issue-tip
jonniebigodes Oct 20, 2025
4d47a0d
Merge branch 'next' into docs_updates_to_addon_jest_location
jonniebigodes Oct 20, 2025
c24563d
Merge pull request #32755 from storybookjs/docs_updates_to_addon_jest…
jonniebigodes Oct 20, 2025
11fecb3
Merge branch 'next' into shahabhilash-docs/add-good-first-issue-tip
jonniebigodes Oct 20, 2025
dced9cb
Merge pull request #32769 from shahabhilash/shahabhilash-docs/add-goo…
jonniebigodes Oct 20, 2025
7b49365
Merge pull request #32745 from storybookjs/norbert/improve-downgrade-…
yannbf Oct 21, 2025
013435c
Merge branch 'next' into norbert/test-runner-bump
ndelangen Oct 21, 2025
8f66a21
Merge pull request #32773 from storybookjs/norbert/test-runner-bump
ndelangen Oct 21, 2025
6336aa0
When users wrap their addons using getAbsolutePath, node (sometimes?)…
ndelangen Oct 21, 2025
4611f75
Merge branch 'next' into norbert/add-manager-entrypoint-a11y
ndelangen Oct 21, 2025
cf268ca
Merge pull request #32780 from storybookjs/norbert/add-manager-entryp…
ndelangen Oct 21, 2025
7630168
Write changelog for 10.0.0-rc.0 [skip ci]
storybook-bot Oct 21, 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
Prev Previous commit
Next Next commit
fix
  • Loading branch information
yannbf committed Oct 17, 2025
commit aa5d4f62ee35899bdf1dce4f9fcb02a47e9ddf04
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@ const isMergeConfigExpression = (path: Declaration) =>
isCallExpression(path) && path.callee.name === 'mergeConfig';

const isSafeToExtendWorkspace = (path: CallExpression) =>
isCallExpression(path) &&
path.arguments.length > 0 &&
isObjectExpression(path.arguments[0]) &&
path.arguments[0]?.properties.every(
(p) =>
Expand Down