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 -1
View File
@@ -38,6 +38,6 @@
},
"devDependencies": {
"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"
},
"dependencies": {
"@prisma/adapter-pg": "^7.2.0",
"@prisma/client": "^7.2.0",
"@prisma/client-runtime-utils": "^7.2.0",
"@prisma/adapter-pg": "^7.9.1",
"@prisma/client": "^7.9.1",
"@prisma/client-runtime-utils": "^7.9.1",
"@sammo-ts/logic": "workspace:*",
"es-toolkit": "^1.43.0",
"pg": "^8.16.3",
"redis": "^5.10.0"
},
"devDependencies": {
"@types/pg": "^8.16.0",
"dotenv": "^17.2.3",
"prisma": "^7.2.0",
"@types/pg": "^8.21.0",
"dotenv": "^17.4.2",
"prisma": "^7.9.1",
"tsdown": "^0.22.14"
}
}
+1 -2
View File
@@ -28,7 +28,6 @@
},
"devDependencies": {
"tsdown": "^0.22.14",
"vite-tsconfig-paths": "^6.0.3",
"vitest": "^4.0.16"
"vitest": "^4.1.10"
}
}
+3 -8
View File
@@ -1,14 +1,9 @@
import path from 'node:path';
import { defineConfig } from 'vitest/config';
import tsconfigPaths from 'vite-tsconfig-paths';
export default defineConfig({
plugins: [
tsconfigPaths({
projects: [path.resolve(__dirname, '../../tsconfig.paths.json')],
}),
],
resolve: {
tsconfigPaths: true,
},
test: {
environment: 'node',
globals: true,
+2 -2
View File
@@ -13,8 +13,8 @@
"zod": "^4.3.5"
},
"devDependencies": {
"@types/node": "^26.1.1",
"tsx": "^4.21.0",
"@types/node": "^26.2.0",
"tsx": "^4.23.12",
"typescript": "6.0.2"
}
}