Skip to content
This repository was archived by the owner on May 29, 2019. It is now read-only.

Commit dd43832

Browse files
gl2748michael-ciniawsky
authored andcommitted
fix: add missing options.ignoreOrder details in Error message (#539)
1 parent e81b883 commit dd43832

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)