Skip to content

Commit 6a6c2f3

Browse files
committed
feat(ci): sort nx projects alphabetically
1 parent 6da769c commit 6a6c2f3

File tree

1 file changed

+1
-1
lines changed
  • packages/ci/src/lib/monorepo/handlers

1 file changed

+1
-1
lines changed

packages/ci/src/lib/monorepo/handlers/nx.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export const nxHandler: MonorepoToolHandler = {
4141
observer: options.observer,
4242
});
4343
const projects = parseProjects(stdout);
44-
return projects.map(project => ({
44+
return projects.toSorted().map(project => ({
4545
name: project,
4646
bin: `npx nx run ${project}:${options.task} --`,
4747
}));

0 commit comments

Comments
 (0)