fix(tooling): lint 검사를 저메모리 하이브리드로 전환

This commit is contained in:
2026-08-31 04:58:57 +00:00
parent 8d88603305
commit 99a477b47e
18 changed files with 532 additions and 32 deletions
+2 -2
View File
@@ -20,8 +20,8 @@
"worker:auction:dev": "GAME_API_ROLE=auction-worker tsdown -c ../../tsdown.config.ts -F @sammo-ts/game-api --watch",
"worker:tournament": "GAME_API_ROLE=tournament-worker node dist/index.js",
"worker:tournament:dev": "GAME_API_ROLE=tournament-worker tsdown -c ../../tsdown.config.ts -F @sammo-ts/game-api --watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint": "pnpm -w lint:target app/game-api",
"lint:fix": "pnpm -w lint:target:fix app/game-api",
"test": "vitest run --config vitest.config.ts",
"typecheck": "pnpm -w tsc7 -b app/game-api/tsconfig.json"
},
+2 -2
View File
@@ -103,8 +103,8 @@
"build": "tsdown -c ./tsdown.config.ts && node ../../tools/check-package-exports.mjs .",
"dev": "tsdown -c ./tsdown.config.ts --watch",
"start": "pnpm run build && GAME_ENGINE_ROLE=turn-daemon node dist/index.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint": "pnpm -w lint:target app/game-engine",
"lint:fix": "pnpm -w lint:target:fix app/game-engine",
"profile:npc-unification-memory": "node scripts/profile-npc-unification-memory.mjs",
"profile:npc-unification-timing": "node scripts/profile-npc-unification-timing.mjs",
"profile:npc-lifecycle-memory": "node scripts/profile-npc-lifecycle-memory.mjs",
+2 -2
View File
@@ -28,8 +28,8 @@
"test:e2e:npc-possession-live": "pnpm --filter @sammo-ts/infra prisma:generate && pnpm --filter @sammo-ts/common build && pnpm --filter @sammo-ts/logic build && pnpm --filter @sammo-ts/infra build && pnpm --filter @sammo-ts/game-engine build && pnpm --filter @sammo-ts/game-api build && playwright test --config e2e/npcPossession.live.playwright.config.mjs --tsconfig e2e/playwright.live.tsconfig.json",
"test:e2e:die-on-prestart-live": "pnpm --filter @sammo-ts/infra prisma:generate && pnpm --filter @sammo-ts/common build && pnpm --filter @sammo-ts/logic build && pnpm --filter @sammo-ts/infra build && pnpm --filter @sammo-ts/game-engine build && pnpm --filter @sammo-ts/game-api build && playwright test --config e2e/dieOnPrestart.live.playwright.config.mjs --tsconfig e2e/playwright.live.tsconfig.json",
"test:e2e:default-recruit-commands-live": "pnpm --filter @sammo-ts/infra prisma:generate && pnpm --filter @sammo-ts/common build && pnpm --filter @sammo-ts/logic build && pnpm --filter @sammo-ts/infra build && pnpm --filter @sammo-ts/game-engine build && pnpm --filter @sammo-ts/game-api build && playwright test --config e2e/defaultRecruitCommands.live.playwright.config.mjs --tsconfig e2e/playwright.live.tsconfig.json",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint": "pnpm -w lint:target app/game-frontend",
"lint:fix": "pnpm -w lint:target:fix app/game-frontend",
"typecheck": "vue-tsc --noEmit"
},
"dependencies": {
+2 -2
View File
@@ -18,8 +18,8 @@
"build": "tsdown -c ../../tsdown.config.ts -F @sammo-ts/gateway-api",
"dev": "tsdown -c ../../tsdown.config.ts -F @sammo-ts/gateway-api --watch",
"orchestrator": "GATEWAY_ROLE=orchestrator node dist/index.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint": "pnpm -w lint:target app/gateway-api",
"lint:fix": "pnpm -w lint:target:fix app/gateway-api",
"test": "vitest run --config vitest.config.ts",
"typecheck": "pnpm -w tsc7 -b app/gateway-api/tsconfig.json"
},
+2 -2
View File
@@ -13,8 +13,8 @@
"build:release": "vite build",
"typecheck:release": "vue-tsc --noEmit",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint": "pnpm -w lint:target app/gateway-frontend",
"lint:fix": "pnpm -w lint:target:fix app/gateway-frontend",
"typecheck": "vue-tsc --noEmit"
},
"dependencies": {
+2 -2
View File
@@ -11,8 +11,8 @@
"run-once": "node dist/index.js run-once",
"status": "node dist/index.js status",
"self-upgrade": "node dist/index.js self-upgrade",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint": "pnpm -w lint:target app/release-controller",
"lint:fix": "pnpm -w lint:target:fix app/release-controller",
"test": "vitest run --config vitest.config.ts",
"typecheck": "pnpm -w tsc7 -b app/release-controller/tsconfig.json"
},