diff --git a/INIT.md b/INIT.md index 38f480e6f3f..d2edb432fe2 100644 --- a/INIT.md +++ b/INIT.md @@ -6,9 +6,9 @@ We ask several questions in the default generator to get you started. --- -1. `Will you be creating multiple bundles? (Y/n)` +1. `Will your application have multiple bundles? (Y/n)` -What we are meaning here, is if you want to provide your bundle a single or multiple [entry points](https://webpack.js.org/configuration/entry-context/#entry). If you have only one entry to your app, answer yes. If you got more modules you want to bundle, answer no. +What we are meaning here, is if you want to provide your bundle a single or multiple [entry points](https://webpack.js.org/configuration/entry-context/#entry). If you have more than one entry point to your app, answer yes. If you only have one, answer no. 2. `Which folder will your generated bundles be in? [default: dist]` diff --git a/lib/creator/yeoman/webpack-generator.js b/lib/creator/yeoman/webpack-generator.js index 9c626399d51..8e235315f87 100644 --- a/lib/creator/yeoman/webpack-generator.js +++ b/lib/creator/yeoman/webpack-generator.js @@ -49,7 +49,7 @@ module.exports = class WebpackGenerator extends Generator { '\n' ); this.prompt([ - Confirm('entryType', 'Will you be creating multiple bundles?') + Confirm('entryType', 'Will your application have multiple bundles?') ]).then( (entryTypeAnswer) => { // Ask different questions for entry points entryQuestions(self, entryTypeAnswer).then(entryOptions => {