1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-08-13 13:48:59 +02:00
This commit is contained in:
GitHub Actions Bot 2024-04-18 11:09:05 +00:00
parent a59d179da6
commit 239d9d7a1f

View File

@ -1,8 +1,13 @@
{ {
"name": "unleash-server", "name": "unleash-server",
"description": "Unleash is an enterprise ready feature toggles service. It provides different strategies for handling feature toggles.", "description": "Unleash is an enterprise ready feature toggles service. It provides different strategies for handling feature toggles.",
"version": "5.11.2", "version": "5.11.3",
"keywords": ["unleash", "feature toggle", "feature", "toggle"], "keywords": [
"unleash",
"feature toggle",
"feature",
"toggle"
],
"files": [ "files": [
"dist", "dist",
"docs", "docs",
@ -75,11 +80,23 @@
"testTimeout": 10000, "testTimeout": 10000,
"globalSetup": "./scripts/jest-setup.js", "globalSetup": "./scripts/jest-setup.js",
"transform": { "transform": {
"^.+\\.tsx?$": ["@swc/jest"] "^.+\\.tsx?$": [
"@swc/jest"
]
}, },
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$", "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"testPathIgnorePatterns": ["/dist/", "/node_modules/", "/frontend/"], "testPathIgnorePatterns": [
"moduleFileExtensions": ["ts", "tsx", "js", "jsx", "json"], "/dist/",
"/node_modules/",
"/frontend/"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
],
"coveragePathIgnorePatterns": [ "coveragePathIgnorePatterns": [
"/node_modules/", "/node_modules/",
"/dist/", "/dist/",
@ -217,8 +234,14 @@
"tough-cookie": "4.1.3" "tough-cookie": "4.1.3"
}, },
"lint-staged": { "lint-staged": {
"*.{js,ts}": ["biome check --apply --no-errors-on-unmatched"], "*.{js,ts}": [
"*.{jsx,tsx}": ["biome check --apply --no-errors-on-unmatched"], "biome check --apply --no-errors-on-unmatched"
"*.json": ["biome format --write --no-errors-on-unmatched"] ],
"*.{jsx,tsx}": [
"biome check --apply --no-errors-on-unmatched"
],
"*.json": [
"biome format --write --no-errors-on-unmatched"
]
} }
} }