chore: update build toolchain dependencies

This commit is contained in:
2026-08-12 15:48:47 +00:00
parent 8e0bd92401
commit d792069f65
23 changed files with 2102 additions and 1864 deletions
+1 -2
View File
@@ -28,8 +28,7 @@
"devDependencies": { "devDependencies": {
"@types/sanitize-html": "2.16.1", "@types/sanitize-html": "2.16.1",
"tsdown": "^0.22.14", "tsdown": "^0.22.14",
"vite-tsconfig-paths": "^6.0.3", "vitest": "^4.1.10"
"vitest": "^4.0.16"
}, },
"dependencies": { "dependencies": {
"@fastify/cors": "^11.2.0", "@fastify/cors": "^11.2.0",
+3 -8
View File
@@ -1,14 +1,9 @@
import path from 'node:path';
import { defineConfig } from 'vitest/config'; import { defineConfig } from 'vitest/config';
import tsconfigPaths from 'vite-tsconfig-paths';
export default defineConfig({ export default defineConfig({
plugins: [ resolve: {
tsconfigPaths({ tsconfigPaths: true,
projects: [path.resolve(__dirname, '../../tsconfig.paths.json')], },
}),
],
test: { test: {
environment: 'node', environment: 'node',
globals: true, globals: true,
+2 -3
View File
@@ -102,7 +102,7 @@
"typecheck": "tsc -b" "typecheck": "tsc -b"
}, },
"dependencies": { "dependencies": {
"@prisma/client": "^7.2.0", "@prisma/client": "^7.9.1",
"@sammo-ts/common": "workspace:*", "@sammo-ts/common": "workspace:*",
"@sammo-ts/infra": "workspace:*", "@sammo-ts/infra": "workspace:*",
"@sammo-ts/logic": "workspace:*", "@sammo-ts/logic": "workspace:*",
@@ -111,7 +111,6 @@
}, },
"devDependencies": { "devDependencies": {
"tsdown": "^0.22.14", "tsdown": "^0.22.14",
"vite-tsconfig-paths": "^6.0.3", "vitest": "^4.1.10"
"vitest": "^4.0.16"
} }
} }
+3 -8
View File
@@ -1,14 +1,9 @@
import path from 'node:path';
import { defineConfig } from 'vitest/config'; import { defineConfig } from 'vitest/config';
import tsconfigPaths from 'vite-tsconfig-paths';
export default defineConfig({ export default defineConfig({
plugins: [ resolve: {
tsconfigPaths({ tsconfigPaths: true,
projects: [path.resolve(__dirname, '../../tsconfig.paths.json')], },
}),
],
test: { test: {
environment: 'node', environment: 'node',
globals: true, globals: true,
+7 -7
View File
@@ -51,13 +51,13 @@
"@sammo-ts/game-engine": "workspace:*", "@sammo-ts/game-engine": "workspace:*",
"@sammo-ts/gateway-api": "workspace:*", "@sammo-ts/gateway-api": "workspace:*",
"@sammo-ts/infra": "workspace:*", "@sammo-ts/infra": "workspace:*",
"@tailwindcss/vite": "^4.1.18", "@tailwindcss/vite": "^4.3.3",
"@vitejs/plugin-vue": "^6.0.3", "@vitejs/plugin-vue": "^6.0.8",
"autoprefixer": "^10.4.23", "autoprefixer": "^10.5.4",
"postcss": "^8.5.6", "postcss": "8.5.26",
"tailwindcss": "^4.1.18", "tailwindcss": "^4.3.3",
"typescript": "6.0.2", "typescript": "6.0.2",
"vite": "^7.3.1", "vite": "^8.2.1",
"vue-tsc": "^3.2.2" "vue-tsc": "^3.3.9"
} }
} }
+1 -1
View File
@@ -32,7 +32,7 @@ export default defineConfig(({ mode }) => {
plugins: [vue(), tailwindcss()], plugins: [vue(), tailwindcss()],
resolve: { resolve: {
alias: { alias: {
'@': path.resolve(__dirname, './src'), '@': path.resolve(import.meta.dirname, './src'),
}, },
}, },
server: { server: {
+2 -3
View File
@@ -26,13 +26,12 @@
"devDependencies": { "devDependencies": {
"@types/sanitize-html": "2.16.1", "@types/sanitize-html": "2.16.1",
"tsdown": "^0.22.14", "tsdown": "^0.22.14",
"vite-tsconfig-paths": "^6.0.3", "vitest": "^4.1.10"
"vitest": "^4.0.16"
}, },
"dependencies": { "dependencies": {
"@fastify/cors": "^11.2.0", "@fastify/cors": "^11.2.0",
"@fastify/static": "^9.0.0", "@fastify/static": "^9.0.0",
"@prisma/client": "^7.2.0", "@prisma/client": "^7.9.1",
"@sammo-ts/common": "workspace:*", "@sammo-ts/common": "workspace:*",
"@sammo-ts/game-engine": "workspace:*", "@sammo-ts/game-engine": "workspace:*",
"@sammo-ts/infra": "workspace:*", "@sammo-ts/infra": "workspace:*",
+3 -8
View File
@@ -1,14 +1,9 @@
import path from 'node:path';
import { defineConfig } from 'vitest/config'; import { defineConfig } from 'vitest/config';
import tsconfigPaths from 'vite-tsconfig-paths';
export default defineConfig({ export default defineConfig({
plugins: [ resolve: {
tsconfigPaths({ tsconfigPaths: true,
projects: [path.resolve(__dirname, '../../tsconfig.paths.json')], },
}),
],
test: { test: {
environment: 'node', environment: 'node',
globals: true, globals: true,
+9 -9
View File
@@ -33,15 +33,15 @@
"@sammo-ts/gateway-api": "workspace:*", "@sammo-ts/gateway-api": "workspace:*",
"@sammo-ts/infra": "workspace:*", "@sammo-ts/infra": "workspace:*",
"@sammo-ts/logic": "workspace:*", "@sammo-ts/logic": "workspace:*",
"@tailwindcss/vite": "^4.1.18", "@tailwindcss/vite": "^4.3.3",
"@types/pg": "^8.16.0", "@types/pg": "^8.21.0",
"@vitejs/plugin-vue": "^6.0.3", "@vitejs/plugin-vue": "^6.0.8",
"autoprefixer": "^10.4.23", "autoprefixer": "^10.5.4",
"pg": "^8.16.3", "pg": "^8.23.0",
"postcss": "^8.5.6", "postcss": "8.5.26",
"tailwindcss": "^4.1.18", "tailwindcss": "^4.3.3",
"typescript": "6.0.2", "typescript": "6.0.2",
"vite": "^7.3.0", "vite": "^8.2.1",
"vue-tsc": "^3.2.1" "vue-tsc": "^3.3.9"
} }
} }
+1 -1
View File
@@ -31,7 +31,7 @@ export default defineConfig(({ mode }) => {
plugins: [vue(), tailwindcss()], plugins: [vue(), tailwindcss()],
resolve: { resolve: {
alias: { alias: {
'@': path.resolve(__dirname, './src'), '@': path.resolve(import.meta.dirname, './src'),
}, },
}, },
server: { server: {
+1 -2
View File
@@ -22,7 +22,6 @@
}, },
"devDependencies": { "devDependencies": {
"tsdown": "^0.22.14", "tsdown": "^0.22.14",
"vite-tsconfig-paths": "^6.0.3", "vitest": "^4.1.10"
"vitest": "^4.0.16"
} }
} }
+3 -4
View File
@@ -1,10 +1,9 @@
import path from 'node:path';
import { defineConfig } from 'vitest/config'; import { defineConfig } from 'vitest/config';
import tsconfigPaths from 'vite-tsconfig-paths';
export default defineConfig({ export default defineConfig({
plugins: [tsconfigPaths({ projects: [path.resolve(__dirname, '../../tsconfig.paths.json')] })], resolve: {
tsconfigPaths: true,
},
test: { test: {
environment: 'node', environment: 'node',
include: ['test/**/*.test.ts'], include: ['test/**/*.test.ts'],
+11 -11
View File
@@ -3,7 +3,7 @@
"private": true, "private": true,
"type": "module", "type": "module",
"version": "0.0.0", "version": "0.0.0",
"packageManager": "pnpm@11.17.0", "packageManager": "pnpm@11.21.0",
"scripts": { "scripts": {
"lint": "turbo lint", "lint": "turbo lint",
"lint:fix": "turbo lint:fix", "lint:fix": "turbo lint:fix",
@@ -37,21 +37,21 @@
}, },
"devDependencies": { "devDependencies": {
"@eslint/js": "^10.0.1", "@eslint/js": "^10.0.1",
"@playwright/test": "1.62.0", "@playwright/test": "1.62.1",
"@types/node": "^26.1.1", "@types/node": "^26.2.0",
"@typescript-eslint/eslint-plugin": "^8.65.0", "@typescript-eslint/eslint-plugin": "^8.67.0",
"@typescript-eslint/parser": "^8.65.0", "@typescript-eslint/parser": "^8.67.0",
"eslint": "^10.8.0", "eslint": "^10.8.1",
"eslint-config-prettier": "^10.1.8", "eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6", "eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-vue": "^10.10.0", "eslint-plugin-vue": "^10.10.0",
"globals": "^17.7.0", "globals": "^17.11.0",
"prettier": "^3.9.6", "prettier": "^3.9.6",
"tsdown": "^0.22.14", "tsdown": "^0.22.14",
"turbo": "^2.10.6", "turbo": "^2.10.9",
"typescript": "6.0.2", "typescript": "6.0.2",
"typescript-eslint": "^8.65.0", "typescript-eslint": "^8.67.0",
"vue-eslint-parser": "^10.4.1", "vitepress": "1.6.4",
"vitepress": "1.6.4" "vue-eslint-parser": "^10.4.1"
} }
} }
+1 -1
View File
@@ -38,6 +38,6 @@
}, },
"devDependencies": { "devDependencies": {
"tsdown": "^0.22.14", "tsdown": "^0.22.14",
"vitest": "^4.0.16" "vitest": "^4.1.10"
} }
} }
+6 -6
View File
@@ -25,18 +25,18 @@
"prisma:db:push:gateway": "prisma db push --schema prisma/gateway.prisma" "prisma:db:push:gateway": "prisma db push --schema prisma/gateway.prisma"
}, },
"dependencies": { "dependencies": {
"@prisma/adapter-pg": "^7.2.0", "@prisma/adapter-pg": "^7.9.1",
"@prisma/client": "^7.2.0", "@prisma/client": "^7.9.1",
"@prisma/client-runtime-utils": "^7.2.0", "@prisma/client-runtime-utils": "^7.9.1",
"@sammo-ts/logic": "workspace:*", "@sammo-ts/logic": "workspace:*",
"es-toolkit": "^1.43.0", "es-toolkit": "^1.43.0",
"pg": "^8.16.3", "pg": "^8.16.3",
"redis": "^5.10.0" "redis": "^5.10.0"
}, },
"devDependencies": { "devDependencies": {
"@types/pg": "^8.16.0", "@types/pg": "^8.21.0",
"dotenv": "^17.2.3", "dotenv": "^17.4.2",
"prisma": "^7.2.0", "prisma": "^7.9.1",
"tsdown": "^0.22.14" "tsdown": "^0.22.14"
} }
} }
+1 -2
View File
@@ -28,7 +28,6 @@
}, },
"devDependencies": { "devDependencies": {
"tsdown": "^0.22.14", "tsdown": "^0.22.14",
"vite-tsconfig-paths": "^6.0.3", "vitest": "^4.1.10"
"vitest": "^4.0.16"
} }
} }
+3 -8
View File
@@ -1,14 +1,9 @@
import path from 'node:path';
import { defineConfig } from 'vitest/config'; import { defineConfig } from 'vitest/config';
import tsconfigPaths from 'vite-tsconfig-paths';
export default defineConfig({ export default defineConfig({
plugins: [ resolve: {
tsconfigPaths({ tsconfigPaths: true,
projects: [path.resolve(__dirname, '../../tsconfig.paths.json')], },
}),
],
test: { test: {
environment: 'node', environment: 'node',
globals: true, globals: true,
+2 -2
View File
@@ -13,8 +13,8 @@
"zod": "^4.3.5" "zod": "^4.3.5"
}, },
"devDependencies": { "devDependencies": {
"@types/node": "^26.1.1", "@types/node": "^26.2.0",
"tsx": "^4.21.0", "tsx": "^4.23.12",
"typescript": "6.0.2" "typescript": "6.0.2"
} }
} }
+2028 -1759
View File
File diff suppressed because it is too large Load Diff
+6 -5
View File
@@ -4,7 +4,7 @@ packages:
- tools/* - tools/*
overrides: overrides:
postcss: 8.5.19 postcss: 8.5.26
typescript: 6.0.2 typescript: 6.0.2
allowBuilds: allowBuilds:
@@ -14,10 +14,11 @@ allowBuilds:
sharp: true sharp: true
minimumReleaseAgeExclude: minimumReleaseAgeExclude:
- eslint@10.8.0 - eslint@10.8.1
- '@playwright/test@1.62.0' - '@playwright/test@1.62.1'
- playwright-core@1.62.0 - playwright-core@1.62.1
- playwright@1.62.0 - playwright@1.62.1
- globals@17.11.0
onlyBuiltDependencies: onlyBuiltDependencies:
- '@prisma/client' - '@prisma/client'
+1 -2
View File
@@ -16,7 +16,6 @@
"@trpc/client": "^11.8.1" "@trpc/client": "^11.8.1"
}, },
"devDependencies": { "devDependencies": {
"vite-tsconfig-paths": "^6.0.3", "vitest": "^4.1.10"
"vitest": "^4.0.16"
} }
} }
+3 -8
View File
@@ -1,14 +1,9 @@
import path from 'node:path';
import { defineConfig } from 'vitest/config'; import { defineConfig } from 'vitest/config';
import tsconfigPaths from 'vite-tsconfig-paths';
export default defineConfig({ export default defineConfig({
plugins: [ resolve: {
tsconfigPaths({ tsconfigPaths: true,
projects: [path.resolve(__dirname, '../../tsconfig.paths.json')], },
}),
],
test: { test: {
environment: 'node', environment: 'node',
globals: true, globals: true,
+4 -4
View File
@@ -19,11 +19,11 @@
"pg": "^8.16.3" "pg": "^8.16.3"
}, },
"devDependencies": { "devDependencies": {
"@types/node": "^26.1.1", "@types/node": "^26.2.0",
"@types/pg": "^8.15.6", "@types/pg": "^8.21.0",
"tsdown": "^0.22.14", "tsdown": "^0.22.14",
"tsx": "^4.20.6", "tsx": "^4.23.12",
"typescript": "6.0.2", "typescript": "6.0.2",
"vitest": "^4.0.16" "vitest": "^4.1.10"
} }
} }