We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d112944 commit abb1379Copy full SHA for abb1379
packages/@vue/cli/lib/Creator.js
@@ -201,7 +201,9 @@ module.exports = class Creator extends EventEmitter {
201
log(`📦 Installing additional dependencies...`)
202
this.emit('creation', { event: 'deps-install' })
203
log()
204
- await pm.install()
+ if (!isTestOrDebug || process.env.VUE_CLI_TEST_DO_INSTALL_PLUGIN) {
205
+ await pm.install()
206
+ }
207
208
// run complete cbs if any (injected by generators)
209
log(`⚓ Running completion hooks...`)
0 commit comments