Skip to content

Commit 68ea43a

Browse files
committed
Antwar: sort list of loaders/plugins
Relates to #607.
1 parent fe55b3d commit 68ea43a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

antwar.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ function combineContexts(context1, context2) {
233233
webpackContext.keys = () => {
234234
let keys1 = context1.keys();
235235
let keys2 = context2.keys();
236-
return _.chain(keys1).concat(keys2).uniq().value();
236+
return _.chain(keys1).concat(keys2).sortBy().uniq().value();
237237
};
238238
return webpackContext;
239239
}

0 commit comments

Comments
 (0)