Skip to content
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

Closed
anthonygore opened this issue Mar 21, 2018 · 7 comments · Fixed by #1032
Closed

vue add should work with plugins that don't have a generator #1017

anthonygore opened this issue Mar 21, 2018 · 7 comments · Fixed by #1032
Labels
feature request intend to implement The team has the intention to implement this feature at some point. Contribution is also welcome.

Comments

@anthonygore
Copy link

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 use npm 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.

@anthonygore anthonygore changed the title vue add should work with plugins that don't have a generator vue add should work with plugins that don't have a generator Mar 21, 2018
@Akryum
Copy link
Member

Akryum commented Mar 21, 2018

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.
Maybe your are confusing them with generic npm package (even if they contain Vue plugins).

@anthonygore
Copy link
Author

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?

@anthonygore
Copy link
Author

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

@Akryum
Copy link
Member

Akryum commented Mar 21, 2018

I mean vue add is meant to install and invoke a vue-cli plugin. It's like a better vue invoke.

@LinusBorg
Copy link
Member

LinusBorg commented Mar 21, 2018

@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 invoke handle this gracefully. We could either skip the invokation silently or log a message to the console like <plugin> doesn't contain a generator, skipping invokation or something.

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 isTestOrDebug to throw in that case.

@yyx990803
Copy link
Member

Yeah we can make that optional - if the plugin does not have a generator, we will just skip it. In this case vue add is simply an alias for npm install or yarn add, but I think it's good to have the consistency that you can vue add any CLI plugin without worrying if it contains a generator. This also makes it easier for plugin authors to write consistent usage docs.

@yyx990803 yyx990803 added feature request intend to implement The team has the intention to implement this feature at some point. Contribution is also welcome. labels Mar 21, 2018
@Akryum
Copy link
Member

Akryum commented Mar 21, 2018

Aye.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature request intend to implement The team has the intention to implement this feature at some point. Contribution is also welcome.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

4 participants