Skip to content

Commit 81bb6a2

Browse files
Florent DUBOSTDevSide
Florent DUBOST
authored andcommitted
Force allChunks to true - fix non-deterministic build
1 parent 0b4e184 commit 81bb6a2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

index.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,9 @@ ExtractTextPlugin.prototype.apply = function(compiler) {
219219
content: content,
220220
options: opt || {}
221221
};
222-
return options.allChunks || module[NS + "/extract"]; // eslint-disable-line no-path-concat
222+
223+
// SETTING THIS TO TRUE INSURES A DETERMINISTIC BUILD:
224+
return true; //options.allChunks || module[NS + "/extract"];
223225
};
224226
});
225227
var filename = this.filename;

0 commit comments

Comments
 (0)