From 28be012a08ca44b4845e700297b34fe51d09fa3d Mon Sep 17 00:00:00 2001 From: Thai Pangsakulyanont Date: Wed, 13 Jun 2018 14:40:47 +0700 Subject: [PATCH 1/7] Uncapitalize webpack name following brand guideline --- bin/cli.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/cli.js b/bin/cli.js index b5d8f9ecccd..ddc147d3f03 100755 --- a/bin/cli.js +++ b/bin/cli.js @@ -521,7 +521,7 @@ For more information, see https://webpack.js.org/api/cli/.`); } compiler.watch(watchOptions, compilerCallback); if (outputOptions.infoVerbosity !== "none") - console.log("\nWebpack is watching the files…\n"); + console.log("\nwebpack is watching the files…\n"); } else compiler.run(compilerCallback); } From d569632edb97c873913a469bc1a6fc8988fcf92e Mon Sep 17 00:00:00 2001 From: Thai Pangsakulyanont Date: Wed, 13 Jun 2018 18:38:58 +0700 Subject: [PATCH 2/7] Update stdin.js --- test/binCases/watch/multi-config-watch-opt/stdin.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/binCases/watch/multi-config-watch-opt/stdin.js b/test/binCases/watch/multi-config-watch-opt/stdin.js index 8fae9bafeb6..5d57c2d3ceb 100644 --- a/test/binCases/watch/multi-config-watch-opt/stdin.js +++ b/test/binCases/watch/multi-config-watch-opt/stdin.js @@ -3,7 +3,7 @@ module.exports = function testAssertions(stdout, stderr, done) { expect(stdout).toEqual(expect.anything()); expect(stdout[0]).toContain(""); - expect(stdout[1]).toContain("Webpack is watching the files…"); + expect(stdout[1]).toContain("webpack is watching the files…"); expect(stderr).toHaveLength(0); done(); From 8c1dec2323bcc36d9782f28890804d6757a4a778 Mon Sep 17 00:00:00 2001 From: Thai Pangsakulyanont Date: Wed, 13 Jun 2018 18:39:14 +0700 Subject: [PATCH 3/7] Update stdin.js --- test/binCases/watch/multi-config/stdin.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/binCases/watch/multi-config/stdin.js b/test/binCases/watch/multi-config/stdin.js index 8fae9bafeb6..5d57c2d3ceb 100644 --- a/test/binCases/watch/multi-config/stdin.js +++ b/test/binCases/watch/multi-config/stdin.js @@ -3,7 +3,7 @@ module.exports = function testAssertions(stdout, stderr, done) { expect(stdout).toEqual(expect.anything()); expect(stdout[0]).toContain(""); - expect(stdout[1]).toContain("Webpack is watching the files…"); + expect(stdout[1]).toContain("webpack is watching the files…"); expect(stderr).toHaveLength(0); done(); From 6e660b41d4be1b622328cc9ec21848b0411bdc55 Mon Sep 17 00:00:00 2001 From: Thai Pangsakulyanont Date: Wed, 13 Jun 2018 18:39:34 +0700 Subject: [PATCH 4/7] Update stdin.js --- test/binCases/watch/single-config/stdin.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/binCases/watch/single-config/stdin.js b/test/binCases/watch/single-config/stdin.js index 8fae9bafeb6..5d57c2d3ceb 100644 --- a/test/binCases/watch/single-config/stdin.js +++ b/test/binCases/watch/single-config/stdin.js @@ -3,7 +3,7 @@ module.exports = function testAssertions(stdout, stderr, done) { expect(stdout).toEqual(expect.anything()); expect(stdout[0]).toContain(""); - expect(stdout[1]).toContain("Webpack is watching the files…"); + expect(stdout[1]).toContain("webpack is watching the files…"); expect(stderr).toHaveLength(0); done(); From 24b40723f267e00d0d8b0b6af1d0bde07ca80cb5 Mon Sep 17 00:00:00 2001 From: Thai Pangsakulyanont Date: Wed, 13 Jun 2018 18:39:52 +0700 Subject: [PATCH 5/7] Update stdin.js --- test/binCases/watch/info-verbosity-off/stdin.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/binCases/watch/info-verbosity-off/stdin.js b/test/binCases/watch/info-verbosity-off/stdin.js index 9eb5147adfb..24c26c12a32 100644 --- a/test/binCases/watch/info-verbosity-off/stdin.js +++ b/test/binCases/watch/info-verbosity-off/stdin.js @@ -3,7 +3,7 @@ module.exports = function testAssertions(stdout, stderr, done) { expect(stdout).toEqual(expect.anything()); expect(stdout[0]).toContain(""); - expect(stdout[1]).not.toContain("Webpack is watching the files…"); + expect(stdout[1]).not.toContain("webpack is watching the files…"); expect(stdout[1]).toContain("Version: webpack"); expect(stderr).toHaveLength(0); From 7497c7daf94d4d86855bd7a74e07f564d1915d04 Mon Sep 17 00:00:00 2001 From: Thai Pangsakulyanont Date: Wed, 13 Jun 2018 18:40:13 +0700 Subject: [PATCH 6/7] Update stdin.js --- test/binCases/watch/info-verbosity-verbose/stdin.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/binCases/watch/info-verbosity-verbose/stdin.js b/test/binCases/watch/info-verbosity-verbose/stdin.js index 00e305aa30b..d0d7cde47fb 100644 --- a/test/binCases/watch/info-verbosity-verbose/stdin.js +++ b/test/binCases/watch/info-verbosity-verbose/stdin.js @@ -6,7 +6,7 @@ module.exports = function testAssertions(stdout, stderr, done) { expect(stdout[1]).toContain("Compilation starting…"); expect(stdout[2]).toContain(""); expect(stdout[3]).toContain(""); - expect(stdout[4]).toContain("Webpack is watching the files…"); + expect(stdout[4]).toContain("webpack is watching the files…"); expect(stdout[6]).toContain(""); expect(stdout[6]).toContain(""); expect(stdout[7]).toContain("Compilation finished"); From 417cbded69d43f764b6a58ad3b2201cebc9a4f26 Mon Sep 17 00:00:00 2001 From: Thai Pangsakulyanont Date: Wed, 13 Jun 2018 18:40:35 +0700 Subject: [PATCH 7/7] Update stdin.js --- test/binCases/watch/single-config-watch-opt/stdin.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/binCases/watch/single-config-watch-opt/stdin.js b/test/binCases/watch/single-config-watch-opt/stdin.js index 8fae9bafeb6..5d57c2d3ceb 100644 --- a/test/binCases/watch/single-config-watch-opt/stdin.js +++ b/test/binCases/watch/single-config-watch-opt/stdin.js @@ -3,7 +3,7 @@ module.exports = function testAssertions(stdout, stderr, done) { expect(stdout).toEqual(expect.anything()); expect(stdout[0]).toContain(""); - expect(stdout[1]).toContain("Webpack is watching the files…"); + expect(stdout[1]).toContain("webpack is watching the files…"); expect(stderr).toHaveLength(0); done();