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