Skip to content

Commit 72e4a78

Browse files
fix: don't pass --verbose to deno binary (#80)
1 parent 4f1544c commit 72e4a78

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commands.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ export async function publish(cwd: string, options: PublishOptions) {
182182
env.DENO_DISABLE_PEDANTIC_NODE_WARNINGS = "true";
183183
}
184184

185-
args.push(...options.publishArgs);
185+
args.push(...options.publishArgs.filter((arg) => arg !== "--verbose"));
186186

187187
await exec(binPath, args, cwd, env);
188188
}

0 commit comments

Comments
 (0)