Skip to content

Commit d49ebb9

Browse files
authored
fix: format
1 parent 3575e36 commit d49ebb9

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

packages/cli/index.ts

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -150,9 +150,15 @@ const main = defineCommand({
150150
const isBinaryApplication = !!args.bin;
151151
const isCommentWithSha = !!args.commentWithSha;
152152
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">)];
153+
const selectedPackageManager = [
154+
...new Set(
155+
(args.packageManager as string)
156+
.split(",")
157+
.filter((s) => s.trim()) as Array<
158+
"npm" | "bun" | "pnpm" | "yarn"
159+
>,
160+
),
161+
];
156162
const packageManagers = ["npm", "bun", "pnpm", "yarn"];
157163

158164
if (!selectedPackageManager.length) {

0 commit comments

Comments
 (0)