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
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,8 +8,8 @@ please create an issue first.
8
8
9
9
* Install [Node.js](https://nodejs.org/) if you have not already.
10
10
*Note: Node 6 or greater may be required for "best results".*
11
-
* Fork the **webpack.io** repo at [https://github.com/webpack/webpack.io](https://github.com/webpack/webpack.io).
12
-
*`git clone <your-clone-url> && cd webpack.io`
11
+
* Fork the **webpack.js.org** repo at [https://github.com/webpack/webpack.js.org](https://github.com/webpack/webpack.js.org).
12
+
*`git clone <your-clone-url> && cd webpack.js.org`
13
13
*`git checkout develop`
14
14
*`npm install`
15
15
*`npm run build`
@@ -59,7 +59,7 @@ After getting some feedback, push to your fork branch and submit a pull request.
59
59
may suggest some changes or improvements or alternatives, but for small changes
60
60
your pull request should be accepted quickly.
61
61
62
-
Issue the PR to the [develop](https://github.com/webpack/webpack.io/tree/develop) branch.
62
+
Issue the PR to the [develop](https://github.com/webpack/webpack.js.org/tree/develop) branch.
* Get Started -  - [#15](https://github.com/webpack/webpack.io/issues/15)
24
+
* Get Started -  - [#15](https://github.com/webpack/webpack.js.org/issues/15)
* Compared to other systems -  - [#48](https://github.com/webpack/webpack.io/issues/48)
* Everything is a module -  - [#49](https://github.com/webpack/webpack.io/issues/49)
* 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.io/issues/11)
* 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