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 * */`; },