Skip to content
This repository was archived by the owner on Aug 4, 2020. It is now read-only.

Commit 95447d1

Browse files
committed
Sort output by filename for more determinism.
This only addresses one source of non-determinism, there may be more.
1 parent bf1fb9a commit 95447d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

file-system-loader.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ var FileSystemLoader = (function () {
125125
var sources = this.sources;
126126
var written = {};
127127

128-
return this.deps.overallOrder().map(function (filename) {
128+
return this.deps.overallOrder().slice().sort().map(function (filename) {
129129
if (written[filename] === true) {
130130
return null;
131131
}

0 commit comments

Comments
 (0)