Use new eslint concurrency option

Signed-off-by: Émile Ré <emile@getprobo.com>
This commit is contained in:
Émile Ré
2026-01-23 12:25:13 +04:00
parent de93e39252
commit c6bd2a2014
3 changed files with 3 additions and 3 deletions

View File

@@ -9,7 +9,7 @@
"relay-compile": "npx relay-compiler",
"relay": "npm run relay-clean && npm run relay-compile",
"build": "tsc -b && vite build",
"lint": "eslint .",
"lint": "eslint . --concurrency 4",
"check": "tsc --noEmit -p tsconfig.app.json",
"preview": "vite preview"
},

View File

@@ -7,7 +7,7 @@
"dev": "vite",
"relay": "find src -type d -name \"__generated__\" -exec rm -rf {} + && npx relay-compiler ./relay.config.json",
"build": "tsc -b && vite build",
"lint": "eslint .",
"lint": "eslint . --concurrency 2",
"check": "tsc --noEmit -p tsconfig.app.json",
"preview": "vite preview"
},

View File

@@ -5,7 +5,7 @@
"type": "module",
"main": "src/index.ts",
"scripts": {
"lint": "eslint .",
"lint": "eslint . --concurrency 2",
"dev": "storybook dev -p 6006 --no-open",
"check": "tsc --noEmit -p tsconfig.app.json",
"icons": "bun run src/Atoms/Icons/generator.ts"