Skip to content

Commit 037bfb6

Browse files
authored
Merge pull request #2 from webpack-contrib/master
fix: add missing `options.ignoreOrder` details in Error message (webpack-contrib#539)
2 parents 018da67 + dd43832 commit 037bfb6

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

index.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,8 @@ function ExtractTextPlugin(options) {
120120
"The available options are:\n" +
121121
" filename: string\n" +
122122
" allChunks: boolean\n" +
123-
" disable: boolean\n");
123+
" disable: boolean\n" +
124+
" ignoreOrder: boolean\n");
124125
}
125126
if(isString(options)) {
126127
options = { filename: options };
@@ -337,7 +338,7 @@ ExtractTextPlugin.prototype.apply = function(compiler) {
337338
});
338339

339340
var file = (isFunction(filename)) ? filename(getPath) : getPath(filename);
340-
341+
341342
compilation.assets[file] = source;
342343
chunk.files.push(file);
343344
}

0 commit comments

Comments
 (0)