Skip to content

Commit a219e23

Browse files
committed
fixed links
1 parent e10de35 commit a219e23

3 files changed

Lines changed: 11 additions & 11 deletions

File tree

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
[![webpack](http://webpack.github.com/assets/logo.png)](http://webpack.github.com)
1+
[![webpack](http://webpack.github.io/assets/logo.png)](http://webpack.github.io)
22

33
[![NPM version](https://badge.fury.io/js/webpack.png)](http://badge.fury.io/js/webpack)
44

5-
[documentation](https://github.com/webpack/docs/wiki)
5+
[documentation](http://webpack.github.io/docs/)
66

77
# Introduction
88

@@ -15,7 +15,7 @@ webpack is a bundler for modules. The main purpose is to bundle javascript files
1515
* dependencies are resolved while compiling, this makes the runtime very small
1616
* loader can preprocess files while compiling, i. e. coffee-script to javascript
1717

18-
Check the [documentation](https://github.com/webpack/docs/wiki) if you want to know more...
18+
Check the [documentation](http://webpack.github.io/docs/) if you want to know more...
1919

2020

2121

@@ -33,15 +33,15 @@ Take a look at the [`examples`](https://github.com/webpack/webpack/tree/master/e
3333
* watch mode
3434
* SourceUrl and SourceMap support
3535
* plugin system, extend webpack or build a complete different compiler
36-
* i. e. [component](https://github.com/webpack/component-webpack-plugin), [rewire](https://github.com/jhnns/rewire-webpack) and [more...](https://github.com/webpack/docs/wiki/webpack-plugins)
37-
* [interfaces](https://github.com/webpack/docs/wiki/webpack-usage)
38-
* CLI with [arguments](https://github.com/webpack/docs/wiki/webpack-detailed-usage)
39-
* CLI with [config file](https://github.com/webpack/docs/wiki/webpack-options), [arguments](https://github.com/webpack/docs/wiki/webpack-detailed-usage) are still possible
36+
* i. e. [component](https://github.com/webpack/component-webpack-plugin), [rewire](https://github.com/jhnns/rewire-webpack) and [more...](http://webpack.github.io/docs/webpack-plugins.html)
37+
* [interfaces](http://webpack.github.io/docs/webpack-usage.html)
38+
* CLI with [arguments](http://webpack.github.io/docs/webpack-detailed-usage.html)
39+
* CLI with [config file](http://webpack.github.io/docs/webpack-options.html), [arguments](http://webpack.github.io/docs/webpack-detailed-usage.html) are still possible
4040
* usable as library from node.js
4141
* usable as [grunt plugin](https://github.com/webpack/grunt-webpack)
4242
* browser replacements
4343
* comes with browser replacements for some node.js modules
44-
* [Hot Module Replacement](https://github.com/webpack/docs/wiki/hot-code-replacement)
44+
* [Hot Module Replacement](http://webpack.github.io/docs/hot-code-replacement.html)
4545
* install updates without full page refresh
4646
* see also
4747
* [webpack-dev-middleware](https://github.com/webpack/webpack-dev-middleware)
@@ -94,7 +94,7 @@ function loadTemplateAsync(name, callback) {
9494

9595
## Documentation
9696

97-
[documentation](https://github.com/webpack/docs/wiki)
97+
[documentation](http://webpack.github.io/docs/)
9898

9999

100100

bin/webpack.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ var fs = require("fs");
1616
var util = require("util");
1717
var optimist = require("optimist")
1818
.usage("webpack " + require("../package.json").version + "\n" +
19-
"Usage: https://github.com/webpack/docs/wiki/webpack-detailed-usage")
19+
"Usage: http://webpack.github.io/docs/webpack-detailed-usage.html")
2020

2121
require("./config-optimist")(optimist);
2222

lib/MovedToPluginWarningPlugin.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ MovedToPluginWarningPlugin.prototype.apply = function(compiler) {
1212
var optionName = this.optionName;
1313
var pluginName = this.pluginName
1414
compiler.plugin("compilation", function(compilation) {
15-
compilation.warnings.push(new Error("webpack options:\nDEPRECATED option '" + optionName + "' will be moved to the " + pluginName + ". Use this by now.\nFor more info about the usage of the " + pluginName + " see https://github.com/webpack/docs/wiki/webpack-plugins"));
15+
compilation.warnings.push(new Error("webpack options:\nDEPRECATED option '" + optionName + "' will be moved to the " + pluginName + ". Use this by now.\nFor more info about the usage of the " + pluginName + " see http://webpack.github.io/docs/webpack-plugins.html"));
1616
});
1717
};

0 commit comments

Comments
 (0)