Skip to content

Commit 782e99d

Browse files
committed
Fix outstanding docs issues, so everything checks (again).
1 parent c0bd60f commit 782e99d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ m.render(document.body, "hello world")
127127

128128
Modularization is the practice of separating the code into files. Doing so makes it easier to find code, understand what code relies on what code, and test.
129129

130-
CommonJS is a de-facto standard for modularizing JavaScript code, and it's used by Node.js, as well as tools like [Browserify](http://browserify.org/) and [Webpack](https://webpack.js.org/). It's a robust, battle-tested precursor to ES6 modules. Although the syntax for ES6 modules is specified in Ecmascript 6, the actual module loading mechanism is not. If you wish to use ES6 modules despite the non-standardized status of module loading, you can use tools like [Rollup](https://rollupjs.org/) or [Babel](https://babeljs.io/).
130+
CommonJS is a de-facto standard for modularizing JavaScript code, and it's used by Node.js, as well as tools like [Browserify](https://browserify.org/) and [Webpack](https://webpack.js.org/). It's a robust, battle-tested precursor to ES6 modules. Although the syntax for ES6 modules is specified in Ecmascript 6, the actual module loading mechanism is not. If you wish to use ES6 modules despite the non-standardized status of module loading, you can use tools like [Rollup](https://rollupjs.org/) or [Babel](https://babeljs.io/).
131131

132132
Most browser today do not natively support modularization systems (CommonJS or ES6), so modularized code must be bundled into a single JavaScript file before running in a client-side application.
133133

@@ -206,7 +206,7 @@ If you open bin/app.js, you'll notice that the Webpack bundle is not minified, s
206206
"name": "my-project",
207207
"scripts": {
208208
"start": "webpack src/index.js --output bin/app.js -d --watch",
209-
"build": "webpack src/index.js --output bin/app.js -p",
209+
"build": "webpack src/index.js --output bin/app.js -p"
210210
}
211211
}
212212
```

0 commit comments

Comments
 (0)