From 862dce6625cc8e9cbeca011bb686c9db7b6cb8f8 Mon Sep 17 00:00:00 2001 From: ISA Date: Tue, 4 Mar 2025 14:20:29 +0100 Subject: [PATCH] Husky Installation --- scripts/bumpVersion.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/bumpVersion.js b/scripts/bumpVersion.js index 2a4a938ea..53d501a81 100644 --- a/scripts/bumpVersion.js +++ b/scripts/bumpVersion.js @@ -8,7 +8,7 @@ const versionFilePath = path.join(__dirname, "../config/appVersion.js"); let content = fs.readFileSync(versionFilePath, "utf8"); // Version auslesen -const versionRegex = /APP_VERSION = "(\d+)\.(\d+)\.(\d+)"/; +const versionRegex = /export const APP_VERSION = "(\d+)\.(\d+)\.(\d+)"/; const match = content.match(versionRegex); if (!match) {