-
-
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
CLI: Add support for Nuxt to project init #26884
Conversation
☁️ Nx Cloud ReportCI is running/has finished running commands for commit 302f3c6. 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. |
Hey @tobiasdiez thanks for your contribution! Seems like a duplicate of #23663. I'll let you, @kasperpeulen and @chakAs3 discuss about it. Thanks! |
Could you review this one @chakAs3 ? |
Ohh, I was not aware of #23663. This would have made my life easier 🙈. It looks like my PR covers the same functionality and I had all the changes of #23663 except for the removal of nuxt from the unsupported template check. The latter I just pushed. Btw, https://github.com/nuxt-modules/storybook/tree/main/examples/starter was generated using the code of this PR. |
I've put in some work on it, but since there wasn't anyone available from the team to review it at the time, I decided to create a separate CLI called 'storybook-nuxt' to expedite the process and deliver something to Nuxt developers who have been waiting for 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.
@shilman @yannbf , could it be a good moment to transition the namespace to @storybook/nuxt, making it an official implementation? A significant amount of effort has been invested since @tobiasdiez joined me in maintaining the module and preset.
I still advocate for keeping the framework preset @storybook/nuxt separate from the monorepo. This way, we can concentrate on Nuxt-specific features without being overly dependent on Storybook. The same approach could be applied to Next.js as well; extracting them from the monorepo might facilitate faster iterations and more focused developmen
@yannbf @kasperpeulen could you please review this PR? Thanks! Then we can retire our own custom cli implementation https://github.com/storybook-vue/storybook-nuxt/tree/main/packages/storybook-nuxt-cli. |
@tobiasdiez Sorry, just came back from holiday, will look at it today! |
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.
Added some type fixes, I have a couple of questions, and kicked off a canary so that I can do some e2e testing.
We plan to merge this into the 8.2 alpha branch after the 8.1 release Wednesday! And patch it back to 8.1 when we have some more feedback.
i noticed that the .storybook generated files are .js instead of .ts, However the project is a typescript project ? there is issue with project type detection when it is Nuxt project i guess |
@chakAs3 I think our logic is mainly checking if |
Right, I've now added a bit of logic to check for the existence for |
c9f63a4
to
1ec720b
Compare
@tobiasdiez Looks good to me. Will do some QA and then merge it. |
@tobiasdiez I have the following error (used the pnpm option of nuxi):
|
@tobiasdiez @chakAs3 Or do I do something wrong? I just did:
|
This should work as expected, but I haven't tested this PR myself. I don't see any issues. @tobiasdiez, did you have a chance to check it? |
This looks like the bug nuxt-modules/storybook#538 that was already fixed in the main branch but isn't yet released (@chakAs3 feel free to prepare a new release whenever you have the time for it; I don't have any other urgent fixes planned in the near future) |
Any updates? |
Will merge as soon as a new version of |
Sorry for the delay it is released : https://github.com/nuxt-modules/storybook/releases/tag/v8.1.1 |
@kasperpeulen did you already found the time to try it out with the newest version? |
# Conflicts: # code/lib/cli/src/detect.ts
@tobiasdiez Just fixed the merge conflicts, let's see if we can get CI green again. |
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.
Thanks @tobiasdiez and @chakAs3 !
installStorybookPackage ? 'storybook' : undefined, | ||
getExternalFramework(rendererId) ? undefined : `@storybook/${rendererId}`, | ||
...frameworkPackages, | ||
...(installFrameworkPackages ? frameworkPackages : []), |
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.
@kasperpeulen I will need to roll-back this optional installation of the storybook
package to ensure this #28310 works.
I'm going to just proceed, but I'd like to evaluate with you on what to do about this.
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.
@tobiasdiez said that it works a bit different in the nuxt world
The setup with nuxt is a bit different. In the nuxt world, you normally install a so-called module. The task of the module is to interface with whatever external library is used under the hood, as well as shipping the library (i.e. it is declared as a dependency).
For example, the tailwind module for nuxt (https://github.com/nuxt-modules/tailwindcss) declares tailwindcss as a dependency (https://github.com/nuxt-modules/tailwindcss/blob/main/package.json#L56). Similarly, in the storybook module we already pull-in storybook as the dependency: https://github.com/nuxt-modules/storybook/blob/30cb7036f1bfc5bc50b11b6b7c3857bcf23886b6/package.json#L81 Thus users don't need to add the storybook packages themselves in their package.json.
Not sure how that would affect that in 8.2 storybook
is required as a peer dep though. I guess we should test it to find out.
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 shouldn't be a problem for us. The nuxt module can pull-in whatever top-level storybook dependency is appropriate. In fact, we do this already for the storybook
package: https://github.com/nuxt-modules/storybook/blob/d1bd15a990851bbcee53822b09acd046a657fd22/packages/nuxt-module/package.json#L50
@ndelangen what issues do you expect?
What I did
Add support for nuxt projects when initializing a new project. This uses the nuxt module https://github.com/nuxt-modules/storybook and the underlying framework implementation https://github.com/storybook-vue/storybook-nuxt.
This module, as most nuxt modules, follows a "batteries included" approach and provides all necessary dependencies. In particular,
storybook
and the storybook-nuxt framework. Thus, a few changes needed to be done in thebaseGenerator
code to disable a few features for the nuxt integrtion.Checklist for Contributors
Testing
The changes in this PR are covered in the following automated tests:
Manual testing
Create a new project using
npx nuxi@latest init
followed bycode\lib\cli\bin\index.js init
.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-26884-sha-1ec720b9
. Try it out in a new sandbox by runningnpx storybook@0.0.0-pr-26884-sha-1ec720b9 sandbox
or in an existing project withnpx storybook@0.0.0-pr-26884-sha-1ec720b9 upgrade
.More information
0.0.0-pr-26884-sha-1ec720b9
nuxt-generator
1ec720b9
1715936289
)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=26884