From d10f49a8024f9c5e31cbe705625b7e90a1ed8bb2 Mon Sep 17 00:00:00 2001 From: Eugene Hlushko Date: Mon, 17 Dec 2018 11:18:06 +0400 Subject: [PATCH 01/10] Revert "docs(configuration): Add default for parallelism (#2481)" This reverts commit 13c3156b5be893f974c8b4cbbccb8d92dab2a898. From c3446c12d3bcc1f836179b20b0aef101ec22d60e Mon Sep 17 00:00:00 2001 From: Eugene Hlushko Date: Mon, 17 Dec 2018 11:18:06 +0400 Subject: [PATCH 02/10] Revert "Update split-chunks-plugin.md" This reverts commit 91ed8044860eb43bbbf24bbccf76264304105765. --- src/content/plugins/split-chunks-plugin.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/plugins/split-chunks-plugin.md b/src/content/plugins/split-chunks-plugin.md index fd14b0004177..c013c4310327 100644 --- a/src/content/plugins/split-chunks-plugin.md +++ b/src/content/plugins/split-chunks-plugin.md @@ -253,7 +253,7 @@ module.exports = { vendors: { test (module, chunks) { //... - return module.type === 'javascript/auto'; + return module.type === "javascript/auto"; } } } From 42f05d9b46f54027f8e8b20ea8c7672e24573aa2 Mon Sep 17 00:00:00 2001 From: Eugene Hlushko Date: Mon, 17 Dec 2018 11:18:06 +0400 Subject: [PATCH 03/10] Revert "Update split-chunks-plugin.md" This reverts commit f93ee593c43953a506b6b4af17cc20acff278ebe. --- src/content/plugins/split-chunks-plugin.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/plugins/split-chunks-plugin.md b/src/content/plugins/split-chunks-plugin.md index c013c4310327..fd14b0004177 100644 --- a/src/content/plugins/split-chunks-plugin.md +++ b/src/content/plugins/split-chunks-plugin.md @@ -253,7 +253,7 @@ module.exports = { vendors: { test (module, chunks) { //... - return module.type === "javascript/auto"; + return module.type === 'javascript/auto'; } } } From 560e4b0ff7125d896d4720c9fd25e3971521e75f Mon Sep 17 00:00:00 2001 From: Eugene Hlushko Date: Mon, 17 Dec 2018 11:18:06 +0400 Subject: [PATCH 04/10] Revert "docs(guides): Update hot-module-replacement.md (#2418)" This reverts commit 2277189fa352495da98c463367e853dd5b5d2510. From ad568fc0b79023121d529939e363806a8838d5a7 Mon Sep 17 00:00:00 2001 From: Eugene Hlushko Date: Mon, 17 Dec 2018 11:18:06 +0400 Subject: [PATCH 05/10] Revert "docs(plugins) splitChunks enforce doesnt make maxSize ignored anymore (#2687)" This reverts commit da1752e794192995edbec4d7684bd80bd6d383cd. From edff3836860fe389d044ecd4b69b0781c5219ded Mon Sep 17 00:00:00 2001 From: Eugene Hlushko Date: Mon, 17 Dec 2018 11:18:06 +0400 Subject: [PATCH 06/10] Revert "docs(guides): Small readme improvements, remove the word "simple" (#2671)" This reverts commit 99b03554c69d171ff712d7bd7c6cd0d8e23efbf3. From 9d6a271235c2c2f13fa5f80c5f7679c7eb3410dd Mon Sep 17 00:00:00 2001 From: Eugene Hlushko Date: Mon, 17 Dec 2018 11:18:06 +0400 Subject: [PATCH 07/10] Revert "docs(API) Add error report introduction of loaders (#2231) (#2298)" This reverts commit 29ce0efe82065a19e2527e58dcce3195ea9886f0. From 92d9637f91795cde58bdc86905a8de8f237e0686 Mon Sep 17 00:00:00 2001 From: Eugene Hlushko Date: Mon, 17 Dec 2018 11:18:06 +0400 Subject: [PATCH 08/10] Revert "docs(concepts): Add a warning note for common errors when specifying rules (#2376)" This reverts commit db50ffb23957f96cb3abed0d74cc9f2d2a8d0215. From 12726fcb36f24c8b904029e35ff3dd207f027f40 Mon Sep 17 00:00:00 2001 From: Eugene Hlushko Date: Mon, 17 Dec 2018 11:18:06 +0400 Subject: [PATCH 09/10] Revert "docs(plugins): Add example on how to tree shake locales from date-fns (#2524)" This reverts commit 1349ca6cdc5cd06a937221f2078707c13e6bd449. From 955d4a272f1b3bd6a3e39cde3df8823e5f72d5d3 Mon Sep 17 00:00:00 2001 From: Eugene Hlushko Date: Mon, 17 Dec 2018 11:18:06 +0400 Subject: [PATCH 10/10] Revert "docs(plugins): Add title to cacheGroups (#2227)" This reverts commit 5b3906e0eb2c196c8d06bf8363b4c84004609e6e. --- src/content/plugins/split-chunks-plugin.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/content/plugins/split-chunks-plugin.md b/src/content/plugins/split-chunks-plugin.md index fd14b0004177..dad5821538fb 100644 --- a/src/content/plugins/split-chunks-plugin.md +++ b/src/content/plugins/split-chunks-plugin.md @@ -217,8 +217,6 @@ A module can belong to multiple cache groups. The optimization will prefer the c If the current chunk contains modules already split out from the main bundle, it will be reused instead of a new one being generated. This can impact the resulting file name of the chunk. -#### `splitChunks.cacheGroups.cacheGroup.test` - __webpack.config.js__ ```js @@ -257,8 +255,8 @@ module.exports = { } } } - } - } + } + } }; ```