Skip to content

Commit

Permalink
[LOCAL] we have patch versions after the .0
Browse files Browse the repository at this point in the history
  • Loading branch information
kelset committed Jan 31, 2023
1 parent 785bc8d commit 0b440d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/version-utils.js
Expand Up @@ -135,7 +135,7 @@ function isStablePrerelease(version) {
return (
version.major === '0' &&
version.minor !== '0' &&
version.patch === '0' &&
version.patch.match(/^\d+$/) &&
version.prerelease != null &&
(version.prerelease.startsWith('rc.') ||
version.prerelease.startsWith('rc-') ||
Expand Down

0 comments on commit 0b440d5

Please sign in to comment.