Closed tobiasdiez closed 1 month ago
CI is running/has finished running commands for commit dab6fd95fe6965d119e7c35a41d0f589c3f60367. 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
Sent with 💌 from NxCloud.
Thanks for this! You're actually touching upon something that we've discussed recently, except you're taking it in the opposite direction 😅
addon-links
is very rarely used, so we've decided to take it out of default templates completely, see https://github.com/storybookjs/storybook/issues/29073
If you change up this PR to remove it from default addons and not add it to addon-essentials
that would be fantastic! ❤️
Removing it from the default generator is an option as well 😄 I've done just that now.
It may be the case that it now has be added to the sandbox. Not sure how/where to do this best though.
Nice!
It may be the case that it now has be added to the sandbox. Not sure how/where to do this best though.
I think you can add it by concating 'link'
to the addons
array in this for loop:
https://github.com/storybookjs/storybook/blob/next/scripts/tasks/sandbox-parts.ts/#L178
@JReinhold Thanks, but it seems this is actually not required (at least the test pass).
@jonniebigodes Thanks for the review!
@JReinhold Thanks, but it seems this is actually not required (at least the test pass).
I see. 🤔 This might be because we add resolutions for it too.
Closes https://github.com/storybookjs/storybook/issues/29073
What I did
The link addon is installed by default when initializing storybook using the cli. Thus, I think, it make sense to make it part of "@storybook/essential-addons". One less package whose version has to be synchronized with the main storybook version and makes manual installation a bit simpler as well.
But maybe there was a reason why it was not essential...sorry if I might reopen an old discussion, this was not my intention.
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
Checklist for Maintainers
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>
_Greptile Summary
This PR marks the link addon as essential by incorporating it into the @storybook/addon-essentials package. Key changes include:
These changes streamline Storybook setup by including the link addon by default, reducing manual configuration and version synchronization needs.