-
Notifications
You must be signed in to change notification settings - Fork 0
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
feat(component-generate-cli): implements new component scafollding with CLI #66
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
728585a
to
111991f
Compare
@mrtag23 Looks like Node 20 is not what's causing those builds to fail, at least not node 20 alone. I have upgraded to Node 20 in main now (merged), so feel free to start with main as base and roll your changes to see when builds start to fail |
@mrtag23 Additionally, you can check |
36095e7
to
4c65837
Compare
inquirer/generate-component.mjs
Outdated
@@ -0,0 +1,38 @@ | |||
import chalk from 'chalk'; | |||
import inquirer from 'inquirer'; |
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.
According to inquirer docs, @inquirer/prompts
is the new library that will receive support and development, and legacy inquirer
will just be in maintenance mode.
I'd switch it up to the new one so we don't start with legacy dependencies
I've also found https://www.npmjs.com/package/prompts to be quite popular, shadcn/ui CLI uses prompts
.
No description provided.