Skip to content

Commit

Permalink
fix(misc): sort plugin names when displaying them (#16702) (#16734)
Browse files Browse the repository at this point in the history
  • Loading branch information
AgentEnder authored May 3, 2023
1 parent 203a874 commit 2d6ea2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/nx/src/utils/plugins/installed-plugins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export function findInstalledPlugins(): PackageJson[] {
result.push(pluginPackageJson);
}
}
return result;
return result.sort((a, b) => a.name.localeCompare(b.name));
}

function getNxPluginPackageJsonOrNull(pkg: string): PackageJson | null {
Expand Down

1 comment on commit 2d6ea2b

@vercel
Copy link

@vercel vercel bot commented on 2d6ea2b May 3, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

nx-dev – ./

nx-five.vercel.app
nx-dev-nrwl.vercel.app
nx-dev-git-master-nrwl.vercel.app
nx.dev

Please sign in to comment.