We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04e21ef commit c91c1c4Copy full SHA for c91c1c4
1 file changed
scripts/release/publish-commands/validate-tags.js
@@ -45,7 +45,7 @@ const run = async ({cwd, packages, tags}) => {
45
process.exit(1);
46
}
47
} else {
48
- if (!tags.includes('latest')) {
+ if (version.indexOf('-') === -1 && !tags.includes('latest')) {
49
console.log(
50
theme`{error Stable release} {version ${version}} {error must always be tagged as} {tag latest}`
51
);
0 commit comments