Skip to content

Commit 02eabdf

Browse files
committed
chore: update release script
1 parent 5a2e8e9 commit 02eabdf

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

scripts/release.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -195,12 +195,10 @@ async function publishUI() {
195195
{
196196
type: 'list',
197197
name: 'tag',
198-
message: 'How should this pre-release version be tagged in npm?',
199-
when: () => isPrereleaseVersion(pkg.version),
198+
message: 'How should this release version be tagged in npm?',
200199
choices: () => execa('npm', ['view', '--json', pkg.name, 'dist-tags'])
201200
.then(({stdout}) => {
202201
return Object.keys(JSON.parse(stdout))
203-
.filter(tag => tag !== 'latest')
204202
.map(tag => {
205203
return {
206204
name: tag,

0 commit comments

Comments
 (0)