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

Commit

Permalink
fix: add missing options.ignoreOrder details in Error message (#539)
Browse files Browse the repository at this point in the history
  • Loading branch information
gl2748 authored and michael-ciniawsky committed Jun 10, 2017
1 parent e81b883 commit dd43832
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions index.js
Expand Up @@ -120,7 +120,8 @@ function ExtractTextPlugin(options) {
"The available options are:\n" +
" filename: string\n" +
" allChunks: boolean\n" +
" disable: boolean\n");
" disable: boolean\n" +
" ignoreOrder: boolean\n");
}
if(isString(options)) {
options = { filename: options };
Expand Down Expand Up @@ -337,7 +338,7 @@ ExtractTextPlugin.prototype.apply = function(compiler) {
});

var file = (isFunction(filename)) ? filename(getPath) : getPath(filename);

compilation.assets[file] = source;
chunk.files.push(file);
}
Expand Down

0 comments on commit dd43832

Please sign in to comment.