Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,8 @@ Or set the [`version-sign-git-tag`](https://yarnpkg.com/lang/en/docs/cli/version
$ yarn config set version-sign-git-tag true
```

`np` supports all kinds of GPG password prompts (console or GUI prompt).

### Private packages

<img src="private-packages.png" width="260" align="right">
Expand Down
10 changes: 8 additions & 2 deletions source/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,10 @@ module.exports = async (input = 'patch', options) => {
return `[Preview] Command not executed: yarn version --new-version ${input}.`;
}
},
task: () => exec('yarn', ['version', '--new-version', input])
task: () => exec('yarn', ['version', '--new-version', input]),
options: {
suspendUpdateRenderer: true
}
},
{
title: 'Bumping version using npm',
Expand All @@ -182,7 +185,10 @@ module.exports = async (input = 'patch', options) => {
return `[Preview] Command not executed: npm version ${input}.`;
}
},
task: () => exec('npm', ['version', input])
task: () => exec('npm', ['version', input]),
options: {
suspendUpdateRenderer: true
}
}
]);

Expand Down