We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b16785 commit 9b1d3b8Copy full SHA for 9b1d3b8
src/index.ts
@@ -206,7 +206,9 @@ export async function searchChangesets(
206
.filter((v) => !results.some((r) => r.version === v))
207
.map((v) => getUnityChangesetFromReleasePage(v)),
208
);
209
- const allResults = results.concat(appendResults);
+ const allResults = results
210
+ .concat(appendResults)
211
+ .sort((a, b) => b.versionNumber - a.versionNumber);
212
213
switch (searchMode) {
214
case SearchMode.All:
0 commit comments