Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

wording #26

Merged
merged 1 commit into from
May 2, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion part1/example4/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ module.exports = {

Going over the new properties one by one:

* [modules](http://webpack.github.io/docs/configuration.html#module) - Options affecting your files
* [module](http://webpack.github.io/docs/configuration.html#module) - Options affecting your files
* [loaders](http://webpack.github.io/docs/configuration.html#module-loaders) - An array of loaders that we specify for our application
* test - A regular expression to match the loader with a file
* loaders - Which loaders to use for files that match the test
Expand Down
3 changes: 3 additions & 0 deletions part1/example5/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,9 @@ actually populate it.
</html>
```

Note that we aren't putting a `<script>` tag into our HTML for `bundle.js`. The plugin will actually
automatically do that for you. If you do put in the script tag, you'll end up loading your same code twice.

and while we're at it let's add some basic styling in `styles.css`

```css
Expand Down