From 32b72cb62e61838ae7ea198cc42da970aa221e76 Mon Sep 17 00:00:00 2001 From: Github Actions Bot <> Date: Fri, 17 May 2024 08:54:51 +0000 Subject: [PATCH] 5.12.4 --- package.json | 26 ++++++++++++++++++++------ 1 file changed, 20 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 02c15619466..611e67a2aca 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "unleash-server", "description": "Unleash is an enterprise ready feature toggles service. It provides different strategies for handling feature toggles.", - "version": "5.12.3", + "version": "5.12.4", "keywords": [ "unleash", "feature toggle", @@ -82,7 +82,9 @@ "testTimeout": 10000, "globalSetup": "./scripts/jest-setup.js", "transform": { - "^.+\\.tsx?$": ["@swc/jest"] + "^.+\\.tsx?$": [ + "@swc/jest" + ] }, "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$", "testPathIgnorePatterns": [ @@ -91,7 +93,13 @@ "/frontend/", "/website/" ], - "moduleFileExtensions": ["ts", "tsx", "js", "jsx", "json"], + "moduleFileExtensions": [ + "ts", + "tsx", + "js", + "jsx", + "json" + ], "coveragePathIgnorePatterns": [ "/node_modules/", "/dist/", @@ -229,8 +237,14 @@ "tough-cookie": "4.1.3" }, "lint-staged": { - "*.{js,ts}": ["biome check --apply --no-errors-on-unmatched"], - "*.{jsx,tsx}": ["biome check --apply --no-errors-on-unmatched"], - "*.json": ["biome format --write --no-errors-on-unmatched"] + "*.{js,ts}": [ + "biome check --apply --no-errors-on-unmatched" + ], + "*.{jsx,tsx}": [ + "biome check --apply --no-errors-on-unmatched" + ], + "*.json": [ + "biome format --write --no-errors-on-unmatched" + ] } }