Skip to content

Commit a2e0eb8

Browse files
authored
Merge pull request #716 from simon04/antwar-sort-plugin-list
Antwar: sort list of loaders/plugins
2 parents 8acfe7d + 68ea43a commit a2e0eb8

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)