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 ebda024 commit 3575e36Copy full SHA for 3575e36
packages/cli/index.ts
@@ -150,9 +150,9 @@ const main = defineCommand({
150
const isBinaryApplication = !!args.bin;
151
const isCommentWithSha = !!args.commentWithSha;
152
const comment: Comment = args.comment as Comment;
153
- const selectedPackageManager = (args.packageManager as string)
+ const selectedPackageManager = [...new Set((args.packageManager as string)
154
.split(",")
155
- .filter((s) => s.trim()) as Array<"npm" | "bun" | "pnpm" | "yarn">;
+ .filter((s) => s.trim()) as Array<"npm" | "bun" | "pnpm" | "yarn">)];
156
const packageManagers = ["npm", "bun", "pnpm", "yarn"];
157
158
if (!selectedPackageManager.length) {
0 commit comments