You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Compared to other systems -  - [#48](https://github.com/webpack/webpack.js.org/issues/48)
* Everything is a module -  - [#49](https://github.com/webpack/webpack.js.org/issues/49)
* Upgrade from webpack 1 -  - [#20](https://github.com/webpack/webpack.io/issues/20)
66
-
* Use with Docker -  - [#44](https://github.com/webpack/webpack.io/issues/44)
67
-
* Use with third party tools -  - [#53](https://github.com/webpack/webpack.io/issues/53)
* Upgrade from webpack 1 -  - [#20](https://github.com/webpack/webpack.js.org/issues/20)
66
+
* Use with Docker -  - [#44](https://github.com/webpack/webpack.js.org/issues/44)
67
+
* Use with third party tools -  - [#53](https://github.com/webpack/webpack.js.org/issues/53)
* Generate a production build -  - [#11](https://github.com/webpack/webpack.js.org/issues/11)
73
73
74
74
## Git Flow
75
75
76
-
We are using the [git flow](http://nvie.com/posts/a-successful-git-branching-model/) branching model. Please direct all pull requests for code changes to the [develop](https://github.com/webpack/webpack.io/tree/develop) branch. [Content](https://github.com/webpack/webpack.io/tree/master/src/content) changes are fine on to make on master.
76
+
We are using the [git flow](http://nvie.com/posts/a-successful-git-branching-model/) branching model. Please direct all pull requests for code changes to the [develop](https://github.com/webpack/webpack.js.org/tree/develop) branch. [Content](https://github.com/webpack/webpack.js.org/tree/master/src/content) changes are fine on to make on master.
77
77
78
78
## Editor Config
79
79
80
-
The [.editorconfig](https://github.com/webpack/webpack.io/blob/develop/.editorconfig) in the root should ensure consistent formatting. Please make sure you've [installed the plugin](http://editorconfig.org/#download) if your text editor needs one.
80
+
The [.editorconfig](https://github.com/webpack/webpack.js.org/blob/develop/.editorconfig) in the root should ensure consistent formatting. Please make sure you've [installed the plugin](http://editorconfig.org/#download) if your text editor needs one.
Copy file name to clipboardExpand all lines: content/api/cli.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -75,7 +75,7 @@ webpack --env=DEVELOPMENT
75
75
76
76
**Print result of webpack as a JSON**
77
77
78
-
In every other case, webpack prints out a set of stats showing bundle, chunk and timing details. Using this option the output can be a JSON object.This response is accepted by webpack's [analyse tool](http://webpack.github.com/analyse). The analyse tool will take in the JSON and provide all the details of the build in graphical form.
78
+
In every other case, webpack prints out a set of stats showing bundle, chunk and timing details. Using this option the output can be a JSON object.This response is accepted by webpack's [analyse tool](https://webpack.github.com/analyse). The analyse tool will take in the JSON and provide all the details of the build in graphical form.
Copy file name to clipboardExpand all lines: content/how-to/cache.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -57,7 +57,7 @@ But the problem here is that, *each* time we create a new build, all filenames w
57
57
58
58
What if we could produce the same filename if the contents of the file did not change between builds? For example, the file where we put all our libraries and other vendor stuff does not change that often.
59
59
60
-
T> Separate your vendor and application code with [CommonsChunkPlugin](http://webpack.github.io/docs/list-of-plugins.html#2-explicit-vendor-chunk) and create an explicit vendor chunk to prevent it from changing too often.
60
+
T> Separate your vendor and application code with [CommonsChunkPlugin](https://webpack.github.io/docs/list-of-plugins.html#2-explicit-vendor-chunk) and create an explicit vendor chunk to prevent it from changing too often.
61
61
62
62
Webpack allows you to generate hashes depending on the file contents. Here is the updated config:
0 commit comments