From 226ac9db48e857935d552b9e51515f5a678b2c61 Mon Sep 17 00:00:00 2001 From: Dereck Tu Date: Thu, 4 Dec 2025 14:53:44 -0500 Subject: [PATCH] fix: build dist for sliding release Ticket: DX-2438 #17 was merged but was not built. This PR runs `npm run build` on master to apply the changes --- dist/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/index.js b/dist/index.js index e059b50..c001c1b 100644 --- a/dist/index.js +++ b/dist/index.js @@ -9908,8 +9908,8 @@ var regexes = { owner: /[^\s\/]+/, repository: /[^\s\/]+/, binaryName: /[^\s@]+/, - majorSemanticVersion: /v(?:0|[1-9]\d*)/, - majorMinorSemanticVersion: /v(?:0|[1-9]\d*)\.(?:0|[1-9]\d*)/, + majorSemanticVersion: /v(?:0|[1-9]\d*)(?:-(?:(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\+(?:[0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?/, + majorMinorSemanticVersion: /v(?:0|[1-9]\d*)\.(?:0|[1-9]\d*)(?:-(?:(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\+(?:[0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?/, exactSemanticVersion: /v(?:0|[1-9]\d*)\.(?:0|[1-9]\d*)\.(?:0|[1-9]\d*)(?:-(?:(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\+(?:[0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?/, sha256Hash: /[a-fA-F0-9]{64}/ };