Decide whether or not to install and deps and if yes choose from package managers #57969
kareemmahlees
started this conversation in
Ideas
Replies: 1 comment 4 replies
-
Maybe I am wrong, but if you run either of: npx create-next-app@latest
# or
yarn create next-app
# or
pnpm create next-app
# or
bunx create-next-app Then, it'll use the package manager you ran the command with, right? |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Goals
Non-Goals
Background
Currently, the workaround here is to delete the node_modules folder and then reinstall the deps with another package manager.
This is of course a resource-consuming method.
Proposal
The list of package managers should only be prompted if the user has chosen to install the deps.
Upon choosing, the
install
command of the corresponding package manager should be run.I would be happy to contribute in making this possible 🙂
Beta Was this translation helpful? Give feedback.
All reactions