Skip to content

Commit

Permalink
Toggle choices in prelease cont. (resolves #1061)
Browse files Browse the repository at this point in the history
  • Loading branch information
webpro committed Nov 11, 2023
1 parent ebc2754 commit 351c95b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/plugin/version/Version.js
Expand Up @@ -10,7 +10,7 @@ const CONTINUATION_TYPES = ['prerelease', 'pre'];
const ALL_RELEASE_TYPES = [...RELEASE_TYPES, ...PRERELEASE_TYPES, ...CONTINUATION_TYPES];

const CHOICES = {
latestIsPreRelease: [...RELEASE_TYPES, CONTINUATION_TYPES[0]],
latestIsPreRelease: [CONTINUATION_TYPES[0], ...RELEASE_TYPES],
preRelease: PRERELEASE_TYPES,
default: [...RELEASE_TYPES, ...PRERELEASE_TYPES]
};
Expand Down

0 comments on commit 351c95b

Please sign in to comment.