Skip to content

Commit 3cdbf5c

Browse files
author
Florent DUBOST
committed
Force allChunks to true - fix non-deterministic build
1 parent 6d68cef commit 3cdbf5c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

index.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,9 @@ ExtractTextPlugin.prototype.apply = function(compiler) {
225225
content: content,
226226
options: opt || {}
227227
};
228-
return options.allChunks || module[NS + "/extract"]; // eslint-disable-line no-path-concat
228+
229+
// SETTING THIS TO TRUE INSURES A DETERMINISTIC BUILD:
230+
return true; //options.allChunks || module[NS + "/extract"];
229231
};
230232
});
231233
var filename = this.filename;

0 commit comments

Comments
 (0)