mirror of https://github.com/webpack/webpack.git
fix typo
This commit is contained in:
parent
9d10f41486
commit
5816c9dc60
|
|
@ -4,6 +4,5 @@ it("should watch for changes", function() {
|
|||
STATS_JSON.modules[0].prefetched.should.be.true();
|
||||
STATS_JSON.modules[1].prefetched.should.be.true();
|
||||
STATS_JSON.modules[2].prefetched.should.be.true();
|
||||
|
||||
}
|
||||
});
|
||||
|
|
|
|||
|
|
@ -0,0 +1,5 @@
|
|||
var a = require("./a");
|
||||
var b = require("./b");
|
||||
var c = require("./c");
|
||||
|
||||
module.exports = a + b + c + '.1';
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
var a = require("./a");
|
||||
var b = require("./b");
|
||||
var c = require("./c");
|
||||
|
||||
module.exports = a + b + c + '.2';
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
var a = require("./a");
|
||||
var b = require("./b");
|
||||
var c = require("./c");
|
||||
|
||||
module.exports = a + b + c + '.3';
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
var webpack = require("../../../../");
|
||||
module.exports = {
|
||||
plugins: [
|
||||
new webpack.AutomaticPrefetchPlugin()
|
||||
]
|
||||
};
|
||||
Loading…
Reference in New Issue