-
-
Notifications
You must be signed in to change notification settings - Fork 6.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
vue add should work with plugins that don't have a generator #1017
Comments
vue add
should work with plugins that don't have a generator
Currently, a vue-cli plugin without generator is invalid. vue-cli plugins are meant to be invoked when added to a project, so I don't see the point of this. |
It’s says in the docs that a plugin “can contain a generator” which I assume to mean is optional https://github.com/vuejs/vue-cli/blob/dev/docs/plugin-dev.md#generator Maybe I am confused about something here, but from what I understand, if the plugin only needs to tweak webpack config why should it need a generator? |
Further up in the docs it’s made clear that a generator is optional https://github.com/vuejs/vue-cli/blob/dev/docs/plugin-dev.md#cli-plugin |
I mean |
@Akryum I see your point, but that's not clear from the command's description. While it says "install a plugin and invoke its generator" its not clear that a missing generator will break the command. So i think we should have That would be as simple as replacing this line: https://github.com/vuejs/vue-cli/blob/dev/packages/%40vue/cli/lib/invoke.js#L80 With a simple console.log(). If we want to still have it throw an error during tests, we could use |
Yeah we can make that optional - if the plugin does not have a generator, we will just skip it. In this case |
Aye. |
What problem does this feature solve?
vue add
is probably the command that most people will want to use when adding new plugins to their project. Currently, it throws an error for plugins where there is no generator. It seems odd that the user would have to know to usenpm i -D <plugin>
instead for plugins with no generator.What does the proposed API look like?
vue add
will install the plugin then detect if the plugin has a generator, and if not, skip the invoke.The text was updated successfully, but these errors were encountered: