From 17616667ce76d82c5a0a7964d1cf3cdfb5e15b67 Mon Sep 17 00:00:00 2001 From: Emanuele Date: Sat, 21 Apr 2018 19:43:37 +0100 Subject: [PATCH] chore(docs): updated old references to the extract text plugin (#412) * chore(dev): added break to the list of type of commit * init(fix): removed references to extract text plugin * fix(commit): rollback --- 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 * */`; },