From aed3b9dfd2cdbcc63451c323ee516d72ebcb4b6f Mon Sep 17 00:00:00 2001 From: Emanuele Stoppa Date: Sun, 8 Apr 2018 08:32:58 +0100 Subject: [PATCH 1/3] chore(dev): added break to the list of type of commit --- .cz-config.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.cz-config.js b/.cz-config.js index 2eb91ccdab0..00bef9ea565 100644 --- a/.cz-config.js +++ b/.cz-config.js @@ -25,6 +25,7 @@ module.exports = { { value: "feat", name: "feat: A new feature" }, { value: "fix", name: "fix: Bugs, typos, etc" }, { value: "misc", name: "misc: Other formats like tweaks and such" }, - { value: "tests", name: "tests: Tests, jest, binTestCases, etc" } + { value: "tests", name: "tests: Tests, jest, binTestCases, etc" }, + { value: "break", name: "break: changes that break the behaviour of the cli" } ] }; From 1a77cff73c70b4e07307e61e0fdeb0816e726bac Mon Sep 17 00:00:00 2001 From: Emanuele Stoppa Date: Sat, 21 Apr 2018 18:12:11 +0100 Subject: [PATCH 2/3] init(fix): removed references to extract text plugin --- INIT.md | 2 +- lib/generators/utils/tooltip.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/INIT.md b/INIT.md index d2edb432fe2..368c5c14c87 100644 --- a/INIT.md +++ b/INIT.md @@ -16,7 +16,7 @@ This answers to the output directory of your application. The output directory i 3. `Are you going to use this in production? (Y/n)` -If you answer `Yes` to this, we add [`ExtractTextPlugin`](https://github.com/webpack-contrib/extract-text-webpack-plugin) to your project. This means that your style files will be separated in production from the bundles where they are used. If you answer `No`, we will not use the plugin, and `Question 6` will be ignored by default. +If you answer `Yes` to this, we add [`MinCssExtractPlugin`](https://github.com/webpack-contrib/mini-css-extract-plugin) to your project. This means that your style files will be separated in production from the bundles where they are used. If you answer `No`, we will not use the plugin, and `Question 6` will be ignored by default. 4. `Will you be using ES2015? (Y/n)` diff --git a/lib/generators/utils/tooltip.js b/lib/generators/utils/tooltip.js index 99b7aff9303..afd530f765f 100644 --- a/lib/generators/utils/tooltip.js +++ b/lib/generators/utils/tooltip.js @@ -33,11 +33,11 @@ module.exports = { }, cssPlugin: _ => { return `/* - * We've enabled ExtractTextPlugin for you. This allows your app to + * We've enabled MiniCssExtractPlugin for you. This allows your app to * use css modules that will be moved into a separate CSS file instead of inside * one of your module entries! * - * https://github.com/webpack-contrib/extract-text-webpack-plugin + * https://github.com/webpack-contrib/mini-css-extract-plugin * */`; }, From e3d3a2df941ce4485909772fd511c1bf32447ec0 Mon Sep 17 00:00:00 2001 From: Emanuele Stoppa Date: Sat, 21 Apr 2018 18:16:26 +0100 Subject: [PATCH 3/3] fix(commit): rollback --- .cz-config.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.cz-config.js b/.cz-config.js index da8bed91300..a9187cd8af8 100644 --- a/.cz-config.js +++ b/.cz-config.js @@ -26,7 +26,6 @@ module.exports = { { value: "feat", name: "feat: A new feature" }, { value: "fix", name: "fix: Bugs, typos, etc" }, { value: "misc", name: "misc: Other formats like tweaks and such" }, - { value: "tests", name: "tests: Tests, jest, binTestCases, etc" }, - { value: "break", name: "break: changes that break the behaviour of the cli" } + { value: "tests", name: "tests: Tests, jest, binTestCases, etc" } ] };