Skip to content

Commit c48c848

Browse files
authored
feat: failOnWarnings option (#3317)
* feat: failOnWarnings option * feat: failOnWarnings option * chore: update docs * chore: enforce exit on warnings * test: fail on warnings option * chore: change flag type * chore: no exit on warning and errors * chore: suggestion
1 parent 788c596 commit c48c848

File tree

4 files changed

+22
-1
lines changed

4 files changed

+22
-1
lines changed

OPTIONS.md

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ Options:
1616
--progress [value] Print compilation progress during build.
1717
--prefetch <value> Prefetch this request.
1818
-j, --json [value] Prints result as JSON or store it in a file.
19+
--fail-on-warnings Stop webpack-cli process with non-zero exit code on warnings from webpack
1920
--no-amd Negative 'amd' option.
2021
--bail Report the first error as a hard error instead of tolerating it.
2122
--no-bail Negative 'bail' option.

packages/webpack-cli/src/types.ts

+1
Original file line numberDiff line numberDiff line change
@@ -210,6 +210,7 @@ interface WebpackRunOptions extends WebpackOptionsNormalized {
210210
json?: boolean;
211211
argv?: Argv;
212212
env: Env;
213+
failOnWarnings?: boolean;
213214
}
214215

215216
/**

packages/webpack-cli/src/webpack-cli.ts

+11-1
Original file line numberDiff line numberDiff line change
@@ -976,6 +976,16 @@ class WebpackCLI implements IWebpackCLI {
976976
description: "Stop watching when stdin stream has ended.",
977977
negatedDescription: "Do not stop watching when stdin stream has ended.",
978978
},
979+
{
980+
name: "fail-on-warnings",
981+
configs: [
982+
{
983+
type: "enum",
984+
values: [true],
985+
},
986+
],
987+
description: "Stop webpack-cli process with non-zero exit code on warnings from webpack",
988+
},
979989
];
980990

981991
// Extract all the flags being exported from core.
@@ -2416,7 +2426,7 @@ class WebpackCLI implements IWebpackCLI {
24162426
process.exit(2);
24172427
}
24182428

2419-
if (stats && stats.hasErrors()) {
2429+
if (stats && (stats.hasErrors() || (options.failOnWarnings && stats.hasWarnings()))) {
24202430
process.exitCode = 1;
24212431
}
24222432

test/build/build-warnings/warnings.test.js

+9
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,15 @@ describe("warnings", () => {
1414
expect(stdout).toMatch(/Error: Can't resolve/);
1515
});
1616

17+
it("should exit with non-zero code on --fail-on-warnings flag", async () => {
18+
const { exitCode, stderr, stdout } = await run(__dirname, ["--fail-on-warnings"]);
19+
20+
expect(exitCode).toBe(1);
21+
expect(stderr).toBeFalsy();
22+
expect(stdout).toMatch(/WARNING/);
23+
expect(stdout).toMatch(/Error: Can't resolve/);
24+
});
25+
1726
it('should output JSON with the "json" flag', async () => {
1827
const { exitCode, stderr, stdout } = await run(__dirname, ["--json"]);
1928

0 commit comments

Comments
 (0)