Skip to content

Commit

Permalink
Minor typo and explaining sequenece for applying loaders.
Browse files Browse the repository at this point in the history
  • Loading branch information
fay-jai committed Feb 7, 2016
1 parent f75308a commit e18c9f3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion part1/example1/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

![Official Dependency Tree](http://i.imgur.com/YU4xBPQ.png)

Webpack is formally referred to as a module bundler. If you want an indepth and accessible explanation
Webpack is formally referred to as a module bundler. If you want an in-depth and accessible explanation
on modules and module bundling definitely check out these two great articles:
[here](https://medium.freecodecamp.com/javascript-modules-a-beginner-s-guide-783f7d7a5fcc#.jw1txw6uh)
and [here](https://medium.com/@preethikasireddy/javascript-modules-part-2-module-bundling-5020383cf306#.lfnspler2).
Expand Down
2 changes: 2 additions & 0 deletions part1/example4/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,3 +69,5 @@ and instead your loader would be written as
```

The process is similar for LESS.

An important aspect to recognize is that there is an *order* to which these loaders need to be specified. In the above example, the `sass` loader is first applied to your `.scss` files, then the `css` loader, and finally the `style` loader. As you can see, the pattern is that these loaders are applied from right to left.

0 comments on commit e18c9f3

Please sign in to comment.