Skip to content

Commit 9814b64

Browse files
committed
feat: use runInteractive for npm publish command
1 parent c16e4a9 commit 9814b64

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/commands/release-npm.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export async function release(directory: string, branch = 'main'): Promise<void>
5757

5858
if (!('private' in pkg) || !pkg.private) {
5959
// npm publish
60-
await check('npm publish', shell.run('npm publish --access public'));
60+
await check('npm publish', shell.runInteractive('npm publish --access public'));
6161
}
6262

6363
// git push

0 commit comments

Comments
 (0)