Skip to content

Commit 4bd2e62

Browse files
committed
feat(ui): Add a few more likely required package managers
While the list of selectable package managers is still hard-coded, add a few more common ones. Signed-off-by: Sebastian Schuberth <[email protected]>
1 parent 2fd24db commit 4bd2e62

File tree

1 file changed

+12
-0
lines changed
  • ui/src/routes/_layout/organizations/$orgId/products/$productId/repositories/$repoId

1 file changed

+12
-0
lines changed

ui/src/routes/_layout/organizations/$orgId/products/$productId/repositories/$repoId/-types.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,10 @@ export const advisors = [
3838
] as const;
3939

4040
export const packageManagers = [
41+
{
42+
id: 'Bazel',
43+
label: 'Bazel (C++, Java, and others)',
44+
},
4145
{
4246
id: 'Bundler',
4347
label: 'Bundler (Ruby)',
@@ -46,6 +50,10 @@ export const packageManagers = [
4650
id: 'Cargo',
4751
label: 'Cargo (Rust)',
4852
},
53+
{
54+
id: 'Composer',
55+
label: 'Composer (PHP)',
56+
},
4957
{
5058
id: 'GoMod',
5159
label: 'GoMod (Go)',
@@ -62,6 +70,10 @@ export const packageManagers = [
6270
id: 'NPM',
6371
label: 'NPM (JavaScript / Node.js)',
6472
},
73+
{
74+
id: 'NuGet',
75+
label: 'NuGet (C# and DotNet in general)',
76+
},
6577
{
6678
id: 'PIP',
6779
label: 'PIP (Python)',

0 commit comments

Comments
 (0)