We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
options.ignoreOrder
1 parent e81b883 commit dd43832Copy full SHA for dd43832
index.js
@@ -120,7 +120,8 @@ function ExtractTextPlugin(options) {
120
"The available options are:\n" +
121
" filename: string\n" +
122
" allChunks: boolean\n" +
123
- " disable: boolean\n");
+ " disable: boolean\n" +
124
+ " ignoreOrder: boolean\n");
125
}
126
if(isString(options)) {
127
options = { filename: options };
@@ -337,7 +338,7 @@ ExtractTextPlugin.prototype.apply = function(compiler) {
337
338
});
339
340
var file = (isFunction(filename)) ? filename(getPath) : getPath(filename);
-
341
+
342
compilation.assets[file] = source;
343
chunk.files.push(file);
344
0 commit comments