Skip to content
Merged
Show file tree
Hide file tree
Changes from 12 commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
36d5495
Upgrade Storybook from v8 to v9
manzoorwanijk Dec 21, 2025
f0c93be
Disable type-checking for node_modules
manzoorwanijk Dec 21, 2025
3044b29
Move Storybook setup to use isolated workspace
manzoorwanijk Dec 21, 2025
11701f6
Fix lints in package.json
manzoorwanijk Dec 21, 2025
cc70e07
Update lockfile
manzoorwanijk Dec 21, 2025
3c853c5
Fix incompatible storybook addons
manzoorwanijk Dec 21, 2025
f0fe62a
Replace the incompatible source-link and badge addons with compatible…
manzoorwanijk Dec 22, 2025
cf29e70
Fix lints
manzoorwanijk Dec 22, 2025
d32d81b
Remove unused packages
manzoorwanijk Dec 22, 2025
f90ba6d
Merge branch 'trunk' into upgrade/storybook
manzoorwanijk Dec 24, 2025
2695698
Add TODO for storybook eslint rule override
manzoorwanijk Dec 24, 2025
bf40d92
We can still import from @storybook/react when declared as a dependency
manzoorwanijk Dec 24, 2025
7429d0a
Disable all default links from source link addon
manzoorwanijk Dec 27, 2025
db8aa30
Use badge data directly in manager
manzoorwanijk Dec 27, 2025
da7930f
Fix hook dependency
manzoorwanijk Dec 27, 2025
78f5e55
Local addons cannot use JSX in newer Storybook versions
manzoorwanijk Dec 27, 2025
8d68352
Remove @storybook/addon-toolbars from storybook instance
manzoorwanijk Dec 27, 2025
db27e26
Merge branch 'trunk' into upgrade/storybook
manzoorwanijk Dec 27, 2025
cba331b
Update package-lock.json
manzoorwanijk Dec 27, 2025
ae96989
Merge branch 'trunk' into upgrade/storybook
manzoorwanijk Dec 27, 2025
4dc5057
Merge branch 'trunk' into upgrade/storybook
manzoorwanijk Dec 30, 2025
388e4b7
Revert the workspace conversion changes
manzoorwanijk Dec 30, 2025
a86eac2
Fix storybook:dev race condition with dev script
manzoorwanijk Dec 30, 2025
f97748b
Merge branch 'trunk' into upgrade/storybook
manzoorwanijk Dec 30, 2025
35664e0
Fix lints after merge conflicts
manzoorwanijk Dec 30, 2025
123a4f4
Merge branch 'trunk' into upgrade/storybook
manzoorwanijk Dec 31, 2025
a1fddc5
Remove unused ts-expect-error comments
manzoorwanijk Dec 31, 2025
116eb7b
Detach stdout event handler and allow clean up on early termination
manzoorwanijk Dec 31, 2025
aec4ce0
Revert changes to bin/dev.mjs
manzoorwanijk Dec 31, 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
4 changes: 4 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -430,6 +430,10 @@ module.exports = {
// Useful to add story descriptions via JSDoc without specifying params,
// or in TypeScript files where params are likely already documented outside of the JSDoc.
'jsdoc/require-param': 'off',
// Disable this rule as eslint-plugin-storybook 0.9.0 doesn't recognize the new
// `storybook/test` import path introduced in Storybook 9.
Comment thread
manzoorwanijk marked this conversation as resolved.
// TODO: Remove this override when we upgrade to eslint-plugin-storybook >= 0.10.0.
'storybook/use-storybook-expect': 'off',
Comment thread
manzoorwanijk marked this conversation as resolved.
},
},
{
Expand Down
Loading
Loading