chore: update build toolchain dependencies
This commit is contained in:
@@ -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",
|
||||||
|
|||||||
@@ -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,
|
||||||
|
|||||||
@@ -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"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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,
|
||||||
|
|||||||
@@ -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"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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: {
|
||||||
|
|||||||
@@ -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:*",
|
||||||
|
|||||||
@@ -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,
|
||||||
|
|||||||
@@ -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"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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: {
|
||||||
|
|||||||
@@ -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"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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
@@ -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"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -38,6 +38,6 @@
|
|||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"tsdown": "^0.22.14",
|
"tsdown": "^0.22.14",
|
||||||
"vitest": "^4.0.16"
|
"vitest": "^4.1.10"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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,
|
||||||
|
|||||||
@@ -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"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Generated
+2028
-1759
File diff suppressed because it is too large
Load Diff
+6
-5
@@ -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'
|
||||||
|
|||||||
@@ -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"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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,
|
||||||
|
|||||||
@@ -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"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user