-
-
Notifications
You must be signed in to change notification settings - Fork 9.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Addon-themes: Fix globals not being set when using absolute path #24596
Addon-themes: Fix globals not being set when using absolute path #24596
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is beyond oddbut so glad that you were able to crack it! Thanks Jeppe <3
@@ -29,6 +29,7 @@ | |||
/code/addons/storyshots-core/ @ndelangen | |||
/code/addons/storyshots-puppeteer/ @ndelangen | |||
/code/addons/storysource/ @ndelangen | |||
/code/addons/themes/ @JReinhold @Integrayshaun |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are you sure that you want to also be on the hook for this addon? ;)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
tag team is best team!
…hing-themes-addon-themes Addon-themes: Fix globals not being set when using absolute path (cherry picked from commit 010fc13)
Closes #24596
What I did
Changed the
preview.ts
ofaddon-themes
toexport const globals...
instead ofexport default { globals: ...
. This is inline with the rest of our addons, but it shouldn't be necessary.If addons are references by path instead of by name, the default export from
dist/preview.mjs
is stripped for some reason. This happens often in monorepos where we recommend usinggetAbsolutePath('addon-name')
inmain.ts
.See this reproduction of the underlying issue:
https://stackblitz.com/edit/github-weunpu-myu7a6?file=.storybook%2Fmain.ts
Here three addons are defined locally:
local-addon-works
exportsconst globals
which workslocal-addon-works-too
exportsdefault
but directly from./preview.js
, this also workslocal-addon-broken
exportsdefault
but via the usualpreview.js -> dist/preview.mjs
and this doesn't work, which is crucial because this is our recommended approach.You can visit the "Story Context Debugger" stories and see the globals being set. You can also open the console.log and see that importing from
./local-addon-broken/preview.js
doesn't include the default export while importing directly from./local-addon-broken/dist/preview.mjs
does include the default export.🤷
This breaks in both Webpack and Vite, BUT only for the local addons.
addon-themes
- even with the "broken" default export - works fine in Vite, it only breaks in Webpack.Checklist for Contributors
Testing
The changes in this PR are covered in the following automated tests:
Manual testing
@storybook/addon-themes@latest
.main.ts
:preview.js
Documentation
MIGRATION.MD
Checklist for Maintainers
When this PR is ready for testing, make sure to add
ci:normal
,ci:merged
orci:daily
GH label to it to run a specific set of sandboxes. The particular set of sandboxes can be found incode/lib/cli/src/sandbox-templates.ts
Make sure this PR contains one of the labels below:
Available labels
bug
: Internal changes that fixes incorrect behavior.maintenance
: User-facing maintenance tasks.dependencies
: Upgrading (sometimes downgrading) dependencies.build
: Internal-facing build tooling & test updates. Will not show up in release changelog.cleanup
: Minor cleanup style change. Will not show up in release changelog.documentation
: Documentation only changes. Will not show up in release changelog.feature request
: Introducing a new feature.BREAKING CHANGE
: Changes that break compatibility in some way with current major version.other
: Changes that don't fit in the above categories.🦋 Canary release
This pull request has been released as version
0.0.0-pr-24596-sha-031534ff
. Install it by pinning all your Storybook dependencies to that version.More information
0.0.0-pr-24596-sha-031534ff
24351-bug-error-when-switching-themes-addon-themes
031534ff
1698397831
)To request a new release of this pull request, mention the
@storybookjs/core
team.core team members can create a new canary release here or locally with
gh workflow run --repo storybookjs/storybook canary-release-pr.yml --field pr=24596