Skip to content

Commit d0c00ae

Browse files
authored
Merge pull request #393 from knowellG/patch-2
Fixes some typos in Get Started with Webpack
2 parents cee88fb + cf7d357 commit d0c00ae

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/get-started/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ The above CLI command would be represented in config as follows -
119119
__webpack.config.js__
120120
```javascript
121121
module.exports = {
122-
entry: './app/index.js'
122+
entry: './app/index.js',
123123
output: {
124124
filename: 'bundle.js',
125125
path: './dist'
@@ -158,7 +158,7 @@ Given it's not particularly fun to run webpack from the CLI this way, we can set
158158
}
159159
```
160160

161-
You can now achieve the same as above by using `npm run build` command. npm picks up the scripts through it and patches the environment temporarily so that it contains the bin commands. You will see this convention a lot of projects out there.
161+
You can now achieve the same as above by using `npm run build` command. npm picks up the scripts through it and patches the environment temporarily so that it contains the bin commands. You will see this convention in a lot of projects out there.
162162

163163
T> You can pass custom parameters to webpack by adding two dashes to the `npm run build` command, e.g. `npm run build -- --colors`.
164164

0 commit comments

Comments
 (0)