-
-
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
Babel: Ensure story files not transpiled earlier than ES2017 #28469
Conversation
… the browser we support
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.
PR Summary
- Updated
code/core/src/core-server/presets/common-preset.ts
to prevent story files from being transpiled beyond supported browsers. - Added Babel configuration override in
code/core/src/core-server/presets/common-preset.ts
to target specific browser versions. - Re-applied default Storybook Babel override in
code/frameworks/nextjs/src/preset.ts
to ensure compatibility with supported browsers. - Included specific browser targets for Chrome, Safari, and Firefox in
code/frameworks/nextjs/src/preset.ts
.
2 file(s) reviewed, no comment(s)
Edit PR Review Bot Settings
☁️ Nx Cloud ReportCI is running/has finished running commands for commit 5b884b6. As they complete they will appear below. Click to see the status, the terminal output, and the build insights. 📂 See all runs for this CI Pipeline Execution ✅ Successfully ran 1 targetSent with 💌 from NxCloud. |
@@ -108,6 +108,29 @@ export const babel: PresetProperty<'babel'> = async (baseConfig: TransformOption | |||
presets, | |||
babelrc: false, | |||
configFile: false, | |||
overrides: [ |
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.
Shouldn’t we load babelDefault
instead from the presets and apply it?
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.
I'm not sure what you mean with this, do you mean to somehow reuse the babel
preset override loaded in:
code/core/src/core-server/presets/common-preset.ts
?
So in theory options.overrides
should actually contain that preset/override, but it gets ignored as the include regex doesn't match the filename in line 62.
That is why I need to copy the override again.
I think we should solve it in:
#28467
But won't be easy I imagine.
// https://storybook.js.org/docs/writing-tests/interaction-testing#run-code-before-each-test | ||
overrides: [ | ||
{ | ||
include: /(story|stories)\.[cm]?[jt]sx?$/, |
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.
If you want to be really exact you probably want to:
- Add a dot at the beginning, to not match
the-cool-stories.js
- Don't match on
story
, Storybook doesn't support that even if a user's glob pattern would match it. (Unless something changes recently in the default CSF Indexer that I'm unaware of)
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.
Good point!
Regarding 2, do you know @shilman ?
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.
Looks like we do support both suffixes in our indexer and the "." bug exists there too:
Co-authored-by: Valentin Palkovic <valentin@chromatic.com>
* Update storybook monorepo to v8.2.9 * Add a bunch of `storybook` deps everywhere. When Storybook decided to do storybookjs/storybook#27039, they seem to have neglected the use case where monorepos might only need a few add-ons for stories in various packages, with all of the storybook stuff in a separate dummy package. So now we need to bring in all of storybook as a dev-dep in every package that has stories. * Fix babel config. Broken by storybookjs/storybook#28469. --------- Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Brad Jorsch <brad.jorsch@automattic.com> Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/10406793290 Upstream-Ref: Automattic/jetpack@ee09161
* Update storybook monorepo to v8.2.9 * Add a bunch of `storybook` deps everywhere. When Storybook decided to do storybookjs/storybook#27039, they seem to have neglected the use case where monorepos might only need a few add-ons for stories in various packages, with all of the storybook stuff in a separate dummy package. So now we need to bring in all of storybook as a dev-dep in every package that has stories. * Fix babel config. Broken by storybookjs/storybook#28469. --------- Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Brad Jorsch <brad.jorsch@automattic.com> Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/10406793290 Upstream-Ref: Automattic/jetpack@ee09161
* Update storybook monorepo to v8.2.9 * Add a bunch of `storybook` deps everywhere. When Storybook decided to do storybookjs/storybook#27039, they seem to have neglected the use case where monorepos might only need a few add-ons for stories in various packages, with all of the storybook stuff in a separate dummy package. So now we need to bring in all of storybook as a dev-dep in every package that has stories. * Fix babel config. Broken by storybookjs/storybook#28469. --------- Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Brad Jorsch <brad.jorsch@automattic.com> Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/10406793290 Upstream-Ref: Automattic/jetpack@ee09161
* Update storybook monorepo to v8.2.9 * Add a bunch of `storybook` deps everywhere. When Storybook decided to do storybookjs/storybook#27039, they seem to have neglected the use case where monorepos might only need a few add-ons for stories in various packages, with all of the storybook stuff in a separate dummy package. So now we need to bring in all of storybook as a dev-dep in every package that has stories. * Fix babel config. Broken by storybookjs/storybook#28469. --------- Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Brad Jorsch <brad.jorsch@automattic.com> Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/10406793290 Upstream-Ref: Automattic/jetpack@ee09161
* Update storybook monorepo to v8.2.9 * Add a bunch of `storybook` deps everywhere. When Storybook decided to do storybookjs/storybook#27039, they seem to have neglected the use case where monorepos might only need a few add-ons for stories in various packages, with all of the storybook stuff in a separate dummy package. So now we need to bring in all of storybook as a dev-dep in every package that has stories. * Fix babel config. Broken by storybookjs/storybook#28469. --------- Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Brad Jorsch <brad.jorsch@automattic.com> Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/10406793290 Upstream-Ref: Automattic/jetpack@ee09161
* Update storybook monorepo to v8.2.9 * Add a bunch of `storybook` deps everywhere. When Storybook decided to do storybookjs/storybook#27039, they seem to have neglected the use case where monorepos might only need a few add-ons for stories in various packages, with all of the storybook stuff in a separate dummy package. So now we need to bring in all of storybook as a dev-dep in every package that has stories. * Fix babel config. Broken by storybookjs/storybook#28469. --------- Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Brad Jorsch <brad.jorsch@automattic.com> Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/10406793290 Upstream-Ref: Automattic/jetpack@ee09161
* Update storybook monorepo to v8.2.9 * Add a bunch of `storybook` deps everywhere. When Storybook decided to do storybookjs/storybook#27039, they seem to have neglected the use case where monorepos might only need a few add-ons for stories in various packages, with all of the storybook stuff in a separate dummy package. So now we need to bring in all of storybook as a dev-dep in every package that has stories. * Fix babel config. Broken by storybookjs/storybook#28469. --------- Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Brad Jorsch <brad.jorsch@automattic.com> Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/10406793290 Upstream-Ref: Automattic/jetpack@ee09161
* Update storybook monorepo to v8.2.9 * Add a bunch of `storybook` deps everywhere. When Storybook decided to do storybookjs/storybook#27039, they seem to have neglected the use case where monorepos might only need a few add-ons for stories in various packages, with all of the storybook stuff in a separate dummy package. So now we need to bring in all of storybook as a dev-dep in every package that has stories. * Fix babel config. Broken by storybookjs/storybook#28469. --------- Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Brad Jorsch <brad.jorsch@automattic.com> Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/10406793290 Upstream-Ref: Automattic/jetpack@ee09161
* Update storybook monorepo to v8.2.9 * Add a bunch of `storybook` deps everywhere. When Storybook decided to do storybookjs/storybook#27039, they seem to have neglected the use case where monorepos might only need a few add-ons for stories in various packages, with all of the storybook stuff in a separate dummy package. So now we need to bring in all of storybook as a dev-dep in every package that has stories. * Fix babel config. Broken by storybookjs/storybook#28469. --------- Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Brad Jorsch <brad.jorsch@automattic.com> Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/10406793290 Upstream-Ref: Automattic/jetpack@ee09161
* Update storybook monorepo to v8.2.9 * Add a bunch of `storybook` deps everywhere. When Storybook decided to do storybookjs/storybook#27039, they seem to have neglected the use case where monorepos might only need a few add-ons for stories in various packages, with all of the storybook stuff in a separate dummy package. So now we need to bring in all of storybook as a dev-dep in every package that has stories. * Fix babel config. Broken by storybookjs/storybook#28469. --------- Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Brad Jorsch <brad.jorsch@automattic.com> Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/10406793290 Upstream-Ref: Automattic/jetpack@ee09161
* Update storybook monorepo to v8.2.9 * Add a bunch of `storybook` deps everywhere. When Storybook decided to do storybookjs/storybook#27039, they seem to have neglected the use case where monorepos might only need a few add-ons for stories in various packages, with all of the storybook stuff in a separate dummy package. So now we need to bring in all of storybook as a dev-dep in every package that has stories. * Fix babel config. Broken by storybookjs/storybook#28469. --------- Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Brad Jorsch <brad.jorsch@automattic.com> Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/10406793290 Upstream-Ref: Automattic/jetpack@ee09161
* Update storybook monorepo to v8.2.9 * Add a bunch of `storybook` deps everywhere. When Storybook decided to do storybookjs/storybook#27039, they seem to have neglected the use case where monorepos might only need a few add-ons for stories in various packages, with all of the storybook stuff in a separate dummy package. So now we need to bring in all of storybook as a dev-dep in every package that has stories. * Fix babel config. Broken by storybookjs/storybook#28469. --------- Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Brad Jorsch <brad.jorsch@automattic.com> Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/10406793290 Upstream-Ref: Automattic/jetpack@ee09161
* Update storybook monorepo to v8.2.9 * Add a bunch of `storybook` deps everywhere. When Storybook decided to do storybookjs/storybook#27039, they seem to have neglected the use case where monorepos might only need a few add-ons for stories in various packages, with all of the storybook stuff in a separate dummy package. So now we need to bring in all of storybook as a dev-dep in every package that has stories. * Fix babel config. Broken by storybookjs/storybook#28469. --------- Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Brad Jorsch <brad.jorsch@automattic.com> Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/10406793290 Upstream-Ref: Automattic/jetpack@ee09161
* Update storybook monorepo to v8.2.9 * Add a bunch of `storybook` deps everywhere. When Storybook decided to do storybookjs/storybook#27039, they seem to have neglected the use case where monorepos might only need a few add-ons for stories in various packages, with all of the storybook stuff in a separate dummy package. So now we need to bring in all of storybook as a dev-dep in every package that has stories. * Fix babel config. Broken by storybookjs/storybook#28469. --------- Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Brad Jorsch <brad.jorsch@automattic.com> Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/10406793290 Upstream-Ref: Automattic/jetpack@ee09161
* Update storybook monorepo to v8.2.9 * Add a bunch of `storybook` deps everywhere. When Storybook decided to do storybookjs/storybook#27039, they seem to have neglected the use case where monorepos might only need a few add-ons for stories in various packages, with all of the storybook stuff in a separate dummy package. So now we need to bring in all of storybook as a dev-dep in every package that has stories. * Fix babel config. Broken by storybookjs/storybook#28469. --------- Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Brad Jorsch <brad.jorsch@automattic.com> Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/10406793290 Upstream-Ref: Automattic/jetpack@ee09161
* Update storybook monorepo to v8.2.9 * Add a bunch of `storybook` deps everywhere. When Storybook decided to do storybookjs/storybook#27039, they seem to have neglected the use case where monorepos might only need a few add-ons for stories in various packages, with all of the storybook stuff in a separate dummy package. So now we need to bring in all of storybook as a dev-dep in every package that has stories. * Fix babel config. Broken by storybookjs/storybook#28469. --------- Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Brad Jorsch <brad.jorsch@automattic.com> Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/10406793290 Upstream-Ref: Automattic/jetpack@ee09161
* Update storybook monorepo to v8.2.9 * Add a bunch of `storybook` deps everywhere. When Storybook decided to do storybookjs/storybook#27039, they seem to have neglected the use case where monorepos might only need a few add-ons for stories in various packages, with all of the storybook stuff in a separate dummy package. So now we need to bring in all of storybook as a dev-dep in every package that has stories. * Fix babel config. Broken by storybookjs/storybook#28469. --------- Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Brad Jorsch <brad.jorsch@automattic.com> Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/10406793290 Upstream-Ref: Automattic/jetpack@ee09161
* Update storybook monorepo to v8.2.9 * Add a bunch of `storybook` deps everywhere. When Storybook decided to do storybookjs/storybook#27039, they seem to have neglected the use case where monorepos might only need a few add-ons for stories in various packages, with all of the storybook stuff in a separate dummy package. So now we need to bring in all of storybook as a dev-dep in every package that has stories. * Fix babel config. Broken by storybookjs/storybook#28469. --------- Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Brad Jorsch <brad.jorsch@automattic.com> Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/10406793290 Upstream-Ref: Automattic/jetpack@ee09161
* Update storybook monorepo to v8.2.9 * Add a bunch of `storybook` deps everywhere. When Storybook decided to do storybookjs/storybook#27039, they seem to have neglected the use case where monorepos might only need a few add-ons for stories in various packages, with all of the storybook stuff in a separate dummy package. So now we need to bring in all of storybook as a dev-dep in every package that has stories. * Fix babel config. Broken by storybookjs/storybook#28469. --------- Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Brad Jorsch <brad.jorsch@automattic.com> Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/10406793290 Upstream-Ref: Automattic/jetpack@ee09161
* Update storybook monorepo to v8.2.9 * Add a bunch of `storybook` deps everywhere. When Storybook decided to do storybookjs/storybook#27039, they seem to have neglected the use case where monorepos might only need a few add-ons for stories in various packages, with all of the storybook stuff in a separate dummy package. So now we need to bring in all of storybook as a dev-dep in every package that has stories. * Fix babel config. Broken by storybookjs/storybook#28469. --------- Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Brad Jorsch <brad.jorsch@automattic.com> Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/10406793290 Upstream-Ref: Automattic/jetpack@ee09161
* Update storybook monorepo to v8.2.9 * Add a bunch of `storybook` deps everywhere. When Storybook decided to do storybookjs/storybook#27039, they seem to have neglected the use case where monorepos might only need a few add-ons for stories in various packages, with all of the storybook stuff in a separate dummy package. So now we need to bring in all of storybook as a dev-dep in every package that has stories. * Fix babel config. Broken by storybookjs/storybook#28469. --------- Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Brad Jorsch <brad.jorsch@automattic.com> Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/10406793290 Upstream-Ref: Automattic/jetpack@ee09161
* Update storybook monorepo to v8.2.9 * Add a bunch of `storybook` deps everywhere. When Storybook decided to do storybookjs/storybook#27039, they seem to have neglected the use case where monorepos might only need a few add-ons for stories in various packages, with all of the storybook stuff in a separate dummy package. So now we need to bring in all of storybook as a dev-dep in every package that has stories. * Fix babel config. Broken by storybookjs/storybook#28469. --------- Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Brad Jorsch <brad.jorsch@automattic.com> Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/10406793290 Upstream-Ref: Automattic/jetpack@ee09161
* Update storybook monorepo to v8.2.9 * Add a bunch of `storybook` deps everywhere. When Storybook decided to do storybookjs/storybook#27039, they seem to have neglected the use case where monorepos might only need a few add-ons for stories in various packages, with all of the storybook stuff in a separate dummy package. So now we need to bring in all of storybook as a dev-dep in every package that has stories. * Fix babel config. Broken by storybookjs/storybook#28469. --------- Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Brad Jorsch <brad.jorsch@automattic.com> Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/10406793290 Upstream-Ref: Automattic/jetpack@ee09161
* Update storybook monorepo to v8.2.9 * Add a bunch of `storybook` deps everywhere. When Storybook decided to do storybookjs/storybook#27039, they seem to have neglected the use case where monorepos might only need a few add-ons for stories in various packages, with all of the storybook stuff in a separate dummy package. So now we need to bring in all of storybook as a dev-dep in every package that has stories. * Fix babel config. Broken by storybookjs/storybook#28469. --------- Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Brad Jorsch <brad.jorsch@automattic.com> Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/10406793290 Upstream-Ref: Automattic/jetpack@ee09161
* Update storybook monorepo to v8.2.9 * Add a bunch of `storybook` deps everywhere. When Storybook decided to do storybookjs/storybook#27039, they seem to have neglected the use case where monorepos might only need a few add-ons for stories in various packages, with all of the storybook stuff in a separate dummy package. So now we need to bring in all of storybook as a dev-dep in every package that has stories. * Fix babel config. Broken by storybookjs/storybook#28469. --------- Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Brad Jorsch <brad.jorsch@automattic.com> Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/10406793290 Upstream-Ref: Automattic/jetpack@ee09161
* Update storybook monorepo to v8.2.9 * Add a bunch of `storybook` deps everywhere. When Storybook decided to do storybookjs/storybook#27039, they seem to have neglected the use case where monorepos might only need a few add-ons for stories in various packages, with all of the storybook stuff in a separate dummy package. So now we need to bring in all of storybook as a dev-dep in every package that has stories. * Fix babel config. Broken by storybookjs/storybook#28469. --------- Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Brad Jorsch <brad.jorsch@automattic.com> Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/10406793290 Upstream-Ref: Automattic/jetpack@ee09161
* Update storybook monorepo to v8.2.9 * Add a bunch of `storybook` deps everywhere. When Storybook decided to do storybookjs/storybook#27039, they seem to have neglected the use case where monorepos might only need a few add-ons for stories in various packages, with all of the storybook stuff in a separate dummy package. So now we need to bring in all of storybook as a dev-dep in every package that has stories. * Fix babel config. Broken by storybookjs/storybook#28469. --------- Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Brad Jorsch <brad.jorsch@automattic.com> Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/10406793290 Upstream-Ref: Automattic/jetpack@ee09161
* Update storybook monorepo to v8.2.9 * Add a bunch of `storybook` deps everywhere. When Storybook decided to do storybookjs/storybook#27039, they seem to have neglected the use case where monorepos might only need a few add-ons for stories in various packages, with all of the storybook stuff in a separate dummy package. So now we need to bring in all of storybook as a dev-dep in every package that has stories. * Fix babel config. Broken by storybookjs/storybook#28469. --------- Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Brad Jorsch <brad.jorsch@automattic.com> Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/10406793290 Upstream-Ref: Automattic/jetpack@ee09161
* Update storybook monorepo to v8.2.9 * Add a bunch of `storybook` deps everywhere. When Storybook decided to do storybookjs/storybook#27039, they seem to have neglected the use case where monorepos might only need a few add-ons for stories in various packages, with all of the storybook stuff in a separate dummy package. So now we need to bring in all of storybook as a dev-dep in every package that has stories. * Fix babel config. Broken by storybookjs/storybook#28469. --------- Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Brad Jorsch <brad.jorsch@automattic.com> Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/10406793290 Upstream-Ref: Automattic/jetpack@ee09161
* Update storybook monorepo to v8.2.9 * Add a bunch of `storybook` deps everywhere. When Storybook decided to do storybookjs/storybook#27039, they seem to have neglected the use case where monorepos might only need a few add-ons for stories in various packages, with all of the storybook stuff in a separate dummy package. So now we need to bring in all of storybook as a dev-dep in every package that has stories. * Fix babel config. Broken by storybookjs/storybook#28469. --------- Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Brad Jorsch <brad.jorsch@automattic.com>
What I did
Make sure that stories files get not transpiled by babel further than the browser we support.
The purpose of this is to preserve the
play: async ({ mount }) => {
destructure code, which we dynamically test at runtime. It's important that we be able to do this at runtime (instead of during compilation) because it will allow us to support Playwright-style fixtures in the future -- an option that we want to keep open.We believe it is a safe, nonbreaking change, because we are scoping the restriction to story files only and not to the user's components. Plus we already apply the same browser targets to the manager & preview-api code, so it is consistent with existing constraints!
Checklist for Contributors
Testing
The changes in this PR are covered in the following automated tests:
Manual testing
This section is mandatory for all contributions. If you believe no manual test is necessary, please state so explicitly. Thanks!
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 PR does not have a canary release associated. You can request a canary release of this pull request by mentioning the
@storybookjs/core
team here.core team members can create a canary release here or locally with
gh workflow run --repo storybookjs/storybook canary-release-pr.yml --field pr=<PR_NUMBER>