Skip to content

Commit 2250af0

Browse files
committedApr 26, 2019
fix(cli): error when no webpack and args found
trows an error when webpack is not installed and no args passed to the cli
1 parent 309cc1c commit 2250af0

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed
 

‎bin/cli.js

+7-2
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,12 @@ For more information, see https://webpack.js.org/api/cli/.`);
7171
options = require("./utils/convert-argv")(argv);
7272
} catch (err) {
7373
if (err.name !== "ValidationError") {
74-
throw err;
74+
console.error("\n\u001b[1m\u001b[31mWebpack not found, please install webpack");
75+
console.error(
76+
"\u001b[1m\u001b[31mAlternatively, run 'webpack(-cli) --help' for usage info.\u001b[39m\u001b[22m\n"
77+
);
78+
process.exitCode = 1;
79+
return;
7580
}
7681

7782
const stack = ErrorHelpers.cleanUpWebpackOptions(err.stack, err.message);
@@ -93,7 +98,7 @@ For more information, see https://webpack.js.org/api/cli/.`);
9398
*/
9499
const stdout = argv.silent
95100
? {
96-
write: () => {}
101+
write: () => {}
97102
} // eslint-disable-line
98103
: process.stdout;
99104

0 commit comments

Comments
 (0)