fix: versions
Node.js CI / CI (push) Failing after 10s
Security Scan and Upload / Security & DefectDojo Upload (push) Has been cancelled

This commit is contained in:
2026-02-03 19:14:31 -08:00
parent d435b9da47
commit df608370a4
2 changed files with 26 additions and 1 deletions
+1 -1
View File
@@ -47,7 +47,7 @@ const isValidSemverRange = (version: string): boolean => {
* @returns The cleaned version string.
*/
const cleanVersion = (version: string): string => {
return version.replace(/^[<=>^~]/, "");
return version.replace(/^[<=>^~]+/, "");
};
/**