Skip to content

Commit

Permalink
Adjusted verbiage regarding entry points (#126)
Browse files Browse the repository at this point in the history
* Adjusted verbiage regarding entry points

* Adjusted verbiage back to mention `bundles`
  • Loading branch information
xlozinguez authored and evenstensberg committed May 12, 2017
1 parent a3d044e commit 627ce2b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions INIT.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]`

Expand Down
2 changes: 1 addition & 1 deletion lib/creator/yeoman/webpack-generator.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 => {
Expand Down

0 comments on commit 627ce2b

Please sign in to comment.