From 3659c5e529fe1319251ef1c713d6cc758f7f5353 Mon Sep 17 00:00:00 2001 From: Nitin Kumar Date: Wed, 6 Jan 2021 18:29:38 +0530 Subject: [PATCH] fix: webpack installation prompt message (#2316) --- packages/webpack-cli/bin/cli.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/webpack-cli/bin/cli.js b/packages/webpack-cli/bin/cli.js index dde3da09046..d309c0a985f 100755 --- a/packages/webpack-cli/bin/cli.js +++ b/packages/webpack-cli/bin/cli.js @@ -21,7 +21,7 @@ process.title = 'webpack'; if (packageExists('webpack')) { runCLI(process.argv); } else { - promptInstallation('webpack -W', () => { + promptInstallation('webpack', () => { error(`It looks like ${yellow('webpack')} is not installed.`); }) .then(() => {