Skip to content

Commit 36a65d6

Browse files
dtinthdhruvdutt
authored andcommitted
chore(branding): Uncapitalize webpack name following brand guideline
Update stdin.js Update stdin.js Update stdin.js Update stdin.js Update stdin.js Update stdin.js
1 parent 29e58ec commit 36a65d6

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

bin/cli.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -521,7 +521,7 @@ For more information, see https://webpack.js.org/api/cli/.`);
521521
}
522522
compiler.watch(watchOptions, compilerCallback);
523523
if (outputOptions.infoVerbosity !== "none")
524-
console.log("\nWebpack is watching the files…\n");
524+
console.log("\nwebpack is watching the files…\n");
525525
} else compiler.run(compilerCallback);
526526
}
527527

test/binCases/watch/info-verbosity-off/stdin.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
module.exports = function testAssertions(stdout, stderr, done) {
44
expect(stdout).toEqual(expect.anything());
55
expect(stdout[0]).toContain("");
6-
expect(stdout[1]).not.toContain("Webpack is watching the files…");
6+
expect(stdout[1]).not.toContain("webpack is watching the files…");
77
expect(stdout[1]).toContain("Version: webpack");
88

99
expect(stderr).toHaveLength(0);

test/binCases/watch/info-verbosity-verbose/stdin.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ module.exports = function testAssertions(stdout, stderr, done) {
66
expect(stdout[1]).toContain("Compilation starting…");
77
expect(stdout[2]).toContain("");
88
expect(stdout[3]).toContain("");
9-
expect(stdout[4]).toContain("Webpack is watching the files…");
9+
expect(stdout[4]).toContain("webpack is watching the files…");
1010
expect(stdout[6]).toContain("");
1111
expect(stdout[6]).toContain("");
1212
expect(stdout[7]).toContain("Compilation finished");

test/binCases/watch/multi-config-watch-opt/stdin.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
module.exports = function testAssertions(stdout, stderr, done) {
44
expect(stdout).toEqual(expect.anything());
55
expect(stdout[0]).toContain("");
6-
expect(stdout[1]).toContain("Webpack is watching the files…");
6+
expect(stdout[1]).toContain("webpack is watching the files…");
77

88
expect(stderr).toHaveLength(0);
99
done();

test/binCases/watch/multi-config/stdin.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
module.exports = function testAssertions(stdout, stderr, done) {
44
expect(stdout).toEqual(expect.anything());
55
expect(stdout[0]).toContain("");
6-
expect(stdout[1]).toContain("Webpack is watching the files…");
6+
expect(stdout[1]).toContain("webpack is watching the files…");
77

88
expect(stderr).toHaveLength(0);
99
done();

test/binCases/watch/single-config-watch-opt/stdin.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
module.exports = function testAssertions(stdout, stderr, done) {
44
expect(stdout).toEqual(expect.anything());
55
expect(stdout[0]).toContain("");
6-
expect(stdout[1]).toContain("Webpack is watching the files…");
6+
expect(stdout[1]).toContain("webpack is watching the files…");
77

88
expect(stderr).toHaveLength(0);
99
done();

test/binCases/watch/single-config/stdin.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
module.exports = function testAssertions(stdout, stderr, done) {
44
expect(stdout).toEqual(expect.anything());
55
expect(stdout[0]).toContain("");
6-
expect(stdout[1]).toContain("Webpack is watching the files…");
6+
expect(stdout[1]).toContain("webpack is watching the files…");
77

88
expect(stderr).toHaveLength(0);
99
done();

0 commit comments

Comments
 (0)