We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 603e24e commit eba1610Copy full SHA for eba1610
tests/utils/next-version-helpers.mjs
@@ -21,7 +21,7 @@ export function nextVersionSatisfies(condition) {
21
const isSemverVersion = valid(version)
22
const checkVersion = isSemverVersion ? version : FUTURE_NEXT_PATCH_VERSION
23
24
- return satisfies(checkVersion, condition) || version === condition
+ return satisfies(checkVersion, condition, { includePrerelease: true }) || version === condition
25
}
26
27
/**
0 commit comments