-
-
Notifications
You must be signed in to change notification settings - Fork 6.3k
Closed
Labels
Description
What problem does this feature solve?
I try use vue-cli ecosystem with yarn install --production.
For this i separate @vue/cli-plugins-*:
dependencies
- @vue/cli-service
- @vue/cli-plugin-babel
devDependencies
- @vue/cli-plugin-eslint
Then i try to build my app:
vue-cli-service build --skip-plugins @vue/cli-plugin-eslintAnd got an error:
Error: Cannot find module '@vue/cli-plugin-eslint'
That's because the Service.js tries to find all the plugins first and skips some of them just to run them.
What does the proposed API look like?
I'll think, skipPlugins must use before resolvePlugin.