fix api dev

This commit is contained in:
Nicolas HOARAU 2026-05-31 22:24:15 +04:00
parent 34d77ad588
commit e9a3eda9b2
9 changed files with 105 additions and 29 deletions

2
.gitignore vendored
View file

@ -3,3 +3,5 @@ node_modules
#Ignore vscode AI rules #Ignore vscode AI rules
.github/instructions/codacy.instructions.md .github/instructions/codacy.instructions.md
packages/db/dist

View file

@ -8,11 +8,11 @@
"scripts": { "scripts": {
"build": "nest build", "build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"", "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "nest start", "start": "nest build && node dist/main.js",
"dev": "nest start --watch", "dev": "nest start --watch",
"start:dev": "nest start --watch", "start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch", "start:debug": "nest start --debug --watch",
"start:prod": "node dist/main", "start:prod": "node dist/main.js",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix", "lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "vitest run", "test": "vitest run",
"test:watch": "vitest", "test:watch": "vitest",
@ -25,6 +25,7 @@
"@nestjs/common": "^11.0.1", "@nestjs/common": "^11.0.1",
"@nestjs/core": "^11.0.1", "@nestjs/core": "^11.0.1",
"@nestjs/platform-express": "^11.0.1", "@nestjs/platform-express": "^11.0.1",
"@proj/db": "workspace:*",
"drizzle-orm": "^0.45.1", "drizzle-orm": "^0.45.1",
"postgres": "^3.4.8", "postgres": "^3.4.8",
"reflect-metadata": "^0.2.2", "reflect-metadata": "^0.2.2",

View file

@ -1,4 +1,4 @@
{ {
"extends": "./tsconfig.json", "extends": "./tsconfig.json",
"exclude": ["node_modules", "test", "dist", "**/*spec.ts"] "exclude": ["node_modules", "test", "dist", "vitest.config.ts", "vitest.config.e2e.ts", "**/*spec.ts"]
} }

View file

@ -12,18 +12,14 @@
"allowSyntheticDefaultImports": true, "allowSyntheticDefaultImports": true,
"target": "ES2023", "target": "ES2023",
"sourceMap": true, "sourceMap": true,
"rootDir": "../..", "rootDir": "src",
"outDir": "./dist", "outDir": "./dist",
"incremental": true,
"skipLibCheck": true, "skipLibCheck": true,
"strictNullChecks": true, "strictNullChecks": true,
"forceConsistentCasingInFileNames": true, "forceConsistentCasingInFileNames": true,
"noImplicitAny": false, "noImplicitAny": false,
"strictBindCallApply": false, "strictBindCallApply": false,
"noFallthroughCasesInSwitch": false, "noFallthroughCasesInSwitch": false
"paths": { },
"@proj/db": ["../../packages/db/index.ts"], "include": ["src/**/*.ts"]
"@proj/db/*": ["../../packages/db/*"]
}
}
} }

View file

@ -9,6 +9,7 @@
"clean": "turbo clean && rm -rf node_modules" "clean": "turbo clean && rm -rf node_modules"
}, },
"devDependencies": { "devDependencies": {
"@ai-sdk/openai-compatible": "^2.0.48",
"turbo": "^2.9.16" "turbo": "^2.9.16"
} }
} }

View file

@ -1,9 +1,10 @@
{ {
"name": "@proj/db", "name": "@proj/db",
"version": "0.0.0", "version": "0.0.0",
"main": "./index.ts", "main": "./dist/index.js",
"types": "./index.ts", "types": "./dist/index.d.ts",
"scripts": { "scripts": {
"build": "tsc -p tsconfig.json",
"db:generate": "drizzle-kit generate:pg", "db:generate": "drizzle-kit generate:pg",
"db:push": "drizzle-kit push:pg" "db:push": "drizzle-kit push:pg"
}, },
@ -12,6 +13,8 @@
"postgres": "latest" "postgres": "latest"
}, },
"devDependencies": { "devDependencies": {
"drizzle-kit": "latest" "@types/node": "^22.0.0",
"drizzle-kit": "latest",
"typescript": "^5.7.0"
} }
} }

18
packages/db/tsconfig.json Normal file
View file

@ -0,0 +1,18 @@
{
"compilerOptions": {
"target": "ES2023",
"module": "nodenext",
"moduleResolution": "nodenext",
"outDir": "./dist",
"rootDir": ".",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
},
"include": ["*.ts"],
"exclude": ["dist"]
}

View file

@ -8,6 +8,9 @@ importers:
.: .:
devDependencies: devDependencies:
'@ai-sdk/openai-compatible':
specifier: ^2.0.48
version: 2.0.48(zod@4.4.3)
turbo: turbo:
specifier: ^2.9.16 specifier: ^2.9.16
version: 2.9.16 version: 2.9.16
@ -23,6 +26,9 @@ importers:
'@nestjs/platform-express': '@nestjs/platform-express':
specifier: ^11.0.1 specifier: ^11.0.1
version: 11.1.14(@nestjs/common@11.1.14)(@nestjs/core@11.1.14) version: 11.1.14(@nestjs/common@11.1.14)(@nestjs/core@11.1.14)
'@proj/db':
specifier: workspace:*
version: link:../../packages/db
drizzle-orm: drizzle-orm:
specifier: ^0.45.1 specifier: ^0.45.1
version: 0.45.1(postgres@3.4.8) version: 0.45.1(postgres@3.4.8)
@ -134,7 +140,7 @@ importers:
version: 3.23.0(@playwright/test@1.58.2)(@vue/test-utils@2.4.6)(happy-dom@20.7.0)(playwright-core@1.58.2)(typescript@5.9.3)(vitest@4.0.18) version: 3.23.0(@playwright/test@1.58.2)(@vue/test-utils@2.4.6)(happy-dom@20.7.0)(playwright-core@1.58.2)(typescript@5.9.3)(vitest@4.0.18)
'@nuxt/ui': '@nuxt/ui':
specifier: ^4.4.0 specifier: ^4.4.0
version: 4.4.0(@tiptap/extensions@3.24.0)(@tiptap/y-tiptap@3.0.4)(embla-carousel@8.6.0)(tailwindcss@4.2.1)(typescript@5.9.3)(vite@7.3.3)(vue@3.5.35)(yjs@13.6.31) version: 4.4.0(@tiptap/extensions@3.24.0)(@tiptap/y-tiptap@3.0.4)(embla-carousel@8.6.0)(tailwindcss@4.2.1)(typescript@5.9.3)(vite@7.3.3)(vue@3.5.35)(yjs@13.6.31)(zod@4.4.3)
nuxt: nuxt:
specifier: ^4.3.0 specifier: ^4.3.0
version: 4.3.1(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@vue/compiler-sfc@3.5.35)(eslint@9.39.3)(typescript@5.9.3)(vite@7.3.3)(vue-tsc@3.2.5) version: 4.3.1(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@vue/compiler-sfc@3.5.35)(eslint@9.39.3)(typescript@5.9.3)(vite@7.3.3)(vue-tsc@3.2.5)
@ -182,12 +188,48 @@ importers:
specifier: latest specifier: latest
version: 3.4.8 version: 3.4.8
devDependencies: devDependencies:
'@types/node':
specifier: ^22.0.0
version: 22.19.19
drizzle-kit: drizzle-kit:
specifier: latest specifier: latest
version: 0.31.9 version: 0.31.9
typescript:
specifier: ^5.7.0
version: 5.9.3
packages: packages:
/@ai-sdk/openai-compatible@2.0.48(zod@4.4.3):
resolution: {integrity: sha512-z9MC6M4Oh/yUY/F/eszOtO8wc2nMz99XmZQKd2gWTtyIfe716xTfrKe3aYZKg20NZDtyjqPPKPSR+wqz7q1T7Q==}
engines: {node: '>=18'}
peerDependencies:
zod: ^3.25.76 || ^4.1.8
dependencies:
'@ai-sdk/provider': 3.0.10
'@ai-sdk/provider-utils': 4.0.27(zod@4.4.3)
zod: 4.4.3
dev: true
/@ai-sdk/provider-utils@4.0.27(zod@4.4.3):
resolution: {integrity: sha512-ubkAJ+xODouwtmN1tYlvTPphH1hPOBfZaEQe8U7skGvFAnIRs9PPpsq57bC2+Ky/MB4yzhd6YOsxTAx9sGpazw==}
engines: {node: '>=18'}
peerDependencies:
zod: ^3.25.76 || ^4.1.8
dependencies:
'@ai-sdk/provider': 3.0.10
'@standard-schema/spec': 1.1.0
eventsource-parser: 3.1.0
zod: 4.4.3
dev: true
/@ai-sdk/provider@3.0.10:
resolution: {integrity: sha512-Q3BZ27qfpYqnCYGvE3vt+Qi6LGOF9R5Nmzn+9JoM1lCRsD9mYaIhfJLkSunN48nfGXJ6n+XNV0J/XVpqGQl7Dw==}
engines: {node: '>=18'}
dependencies:
json-schema: 0.4.0
dev: true
/@alloc/quick-lru@5.2.0: /@alloc/quick-lru@5.2.0:
resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==} resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
engines: {node: '>=10'} engines: {node: '>=10'}
@ -2705,7 +2747,7 @@ packages:
resolution: {integrity: sha512-gWp7NfQW27LaBQz3TITS8L7ZCQ0TLvtmI//4OwlQRx4rnWxcPNIYjxZpDcN4+UlGxgm3jS5QPz8IPTCkb59wZA==} resolution: {integrity: sha512-gWp7NfQW27LaBQz3TITS8L7ZCQ0TLvtmI//4OwlQRx4rnWxcPNIYjxZpDcN4+UlGxgm3jS5QPz8IPTCkb59wZA==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
dependencies: dependencies:
'@types/node': 22.19.11 '@types/node': 22.19.19
jest-regex-util: 30.0.1 jest-regex-util: 30.0.1
dev: true dev: true
@ -2836,7 +2878,7 @@ packages:
'@jest/schemas': 30.0.5 '@jest/schemas': 30.0.5
'@types/istanbul-lib-coverage': 2.0.6 '@types/istanbul-lib-coverage': 2.0.6
'@types/istanbul-reports': 3.0.4 '@types/istanbul-reports': 3.0.4
'@types/node': 22.19.11 '@types/node': 22.19.19
'@types/yargs': 17.0.35 '@types/yargs': 17.0.35
chalk: 4.1.2 chalk: 4.1.2
dev: true dev: true
@ -3739,7 +3781,7 @@ packages:
- typescript - typescript
dev: false dev: false
/@nuxt/ui@4.4.0(@tiptap/extensions@3.24.0)(@tiptap/y-tiptap@3.0.4)(embla-carousel@8.6.0)(tailwindcss@4.2.1)(typescript@5.9.3)(vite@7.3.3)(vue@3.5.35)(yjs@13.6.31): /@nuxt/ui@4.4.0(@tiptap/extensions@3.24.0)(@tiptap/y-tiptap@3.0.4)(embla-carousel@8.6.0)(tailwindcss@4.2.1)(typescript@5.9.3)(vite@7.3.3)(vue@3.5.35)(yjs@13.6.31)(zod@4.4.3):
resolution: {integrity: sha512-c9n8PgYSpFpC3GSz0LtAzceo/jjNyaI1yFJbDPJop5OoeeWqKOC3filsQFNPxo+i3v81EiGkZq+bJ7pnHxAGkA==} resolution: {integrity: sha512-c9n8PgYSpFpC3GSz0LtAzceo/jjNyaI1yFJbDPJop5OoeeWqKOC3filsQFNPxo+i3v81EiGkZq+bJ7pnHxAGkA==}
engines: {node: ^20.19.0 || >=22.12.0} engines: {node: ^20.19.0 || >=22.12.0}
hasBin: true hasBin: true
@ -3838,6 +3880,7 @@ packages:
unplugin-vue-components: 31.0.0(@nuxt/kit@4.3.1)(vue@3.5.35) unplugin-vue-components: 31.0.0(@nuxt/kit@4.3.1)(vue@3.5.35)
vaul-vue: 0.4.1(reka-ui@2.7.0)(vue@3.5.35) vaul-vue: 0.4.1(reka-ui@2.7.0)(vue@3.5.35)
vue-component-type-helpers: 3.2.5 vue-component-type-helpers: 3.2.5
zod: 4.4.3
transitivePeerDependencies: transitivePeerDependencies:
- '@azure/app-configuration' - '@azure/app-configuration'
- '@azure/cosmos' - '@azure/cosmos'
@ -6327,7 +6370,7 @@ packages:
resolution: {integrity: sha512-HLFeCYgz89uk22N5Qg3dvGvsv46B8GLvKKo1zKG4NybA8U2DiEO3w9lqGg29t/tfLRJpJ6iQxnVw4OnB7MoM9g==} resolution: {integrity: sha512-HLFeCYgz89uk22N5Qg3dvGvsv46B8GLvKKo1zKG4NybA8U2DiEO3w9lqGg29t/tfLRJpJ6iQxnVw4OnB7MoM9g==}
dependencies: dependencies:
'@types/connect': 3.4.38 '@types/connect': 3.4.38
'@types/node': 22.19.11 '@types/node': 22.19.19
dev: true dev: true
/@types/chai@5.2.3: /@types/chai@5.2.3:
@ -6339,7 +6382,7 @@ packages:
/@types/connect@3.4.38: /@types/connect@3.4.38:
resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==} resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==}
dependencies: dependencies:
'@types/node': 22.19.11 '@types/node': 22.19.19
dev: true dev: true
/@types/cookiejar@2.1.5: /@types/cookiejar@2.1.5:
@ -6377,7 +6420,7 @@ packages:
/@types/express-serve-static-core@5.1.1: /@types/express-serve-static-core@5.1.1:
resolution: {integrity: sha512-v4zIMr/cX7/d2BpAEX3KNKL/JrT1s43s96lLvvdTmza1oEvDudCqK9aF/djc/SWgy8Yh0h30TZx5VpzqFCxk5A==} resolution: {integrity: sha512-v4zIMr/cX7/d2BpAEX3KNKL/JrT1s43s96lLvvdTmza1oEvDudCqK9aF/djc/SWgy8Yh0h30TZx5VpzqFCxk5A==}
dependencies: dependencies:
'@types/node': 22.19.11 '@types/node': 22.19.19
'@types/qs': 6.14.0 '@types/qs': 6.14.0
'@types/range-parser': 1.2.7 '@types/range-parser': 1.2.7
'@types/send': 1.2.1 '@types/send': 1.2.1
@ -6449,7 +6492,6 @@ packages:
resolution: {integrity: sha512-dyh/xO2Fh5bYrfWaaqGrRQQGkNdmYw6AmaAUvYeUMNTWQtvb796ikLdmTchRmOlOiIJ1TDXfWgVx1QkUlQ6Hew==} resolution: {integrity: sha512-dyh/xO2Fh5bYrfWaaqGrRQQGkNdmYw6AmaAUvYeUMNTWQtvb796ikLdmTchRmOlOiIJ1TDXfWgVx1QkUlQ6Hew==}
dependencies: dependencies:
undici-types: 6.21.0 undici-types: 6.21.0
dev: true
/@types/qs@6.14.0: /@types/qs@6.14.0:
resolution: {integrity: sha512-eOunJqu0K1923aExK6y8p6fsihYEn/BYuQ4g0CxAAgFc4b/ZLN4CrsRZ55srTdqoiLzU2B2evC+apEIxprEzkQ==} resolution: {integrity: sha512-eOunJqu0K1923aExK6y8p6fsihYEn/BYuQ4g0CxAAgFc4b/ZLN4CrsRZ55srTdqoiLzU2B2evC+apEIxprEzkQ==}
@ -6466,14 +6508,14 @@ packages:
/@types/send@1.2.1: /@types/send@1.2.1:
resolution: {integrity: sha512-arsCikDvlU99zl1g69TcAB3mzZPpxgw0UQnaHeC1Nwb015xp8bknZv5rIfri9xTOcMuaVgvabfIRA7PSZVuZIQ==} resolution: {integrity: sha512-arsCikDvlU99zl1g69TcAB3mzZPpxgw0UQnaHeC1Nwb015xp8bknZv5rIfri9xTOcMuaVgvabfIRA7PSZVuZIQ==}
dependencies: dependencies:
'@types/node': 22.19.11 '@types/node': 22.19.19
dev: true dev: true
/@types/serve-static@2.2.0: /@types/serve-static@2.2.0:
resolution: {integrity: sha512-8mam4H1NHLtu7nmtalF7eyBH14QyOASmcxHhSfEoRyr0nP/YdoesEtU+uSRvMe96TW/HPTtkoKqQLl53N7UXMQ==} resolution: {integrity: sha512-8mam4H1NHLtu7nmtalF7eyBH14QyOASmcxHhSfEoRyr0nP/YdoesEtU+uSRvMe96TW/HPTtkoKqQLl53N7UXMQ==}
dependencies: dependencies:
'@types/http-errors': 2.0.5 '@types/http-errors': 2.0.5
'@types/node': 22.19.11 '@types/node': 22.19.19
dev: true dev: true
/@types/stack-utils@2.0.3: /@types/stack-utils@2.0.3:
@ -6485,7 +6527,7 @@ packages:
dependencies: dependencies:
'@types/cookiejar': 2.1.5 '@types/cookiejar': 2.1.5
'@types/methods': 1.1.4 '@types/methods': 1.1.4
'@types/node': 22.19.11 '@types/node': 22.19.19
form-data: 4.0.5 form-data: 4.0.5
dev: true dev: true
@ -6510,7 +6552,7 @@ packages:
/@types/ws@8.18.1: /@types/ws@8.18.1:
resolution: {integrity: sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==} resolution: {integrity: sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==}
dependencies: dependencies:
'@types/node': 22.19.11 '@types/node': 22.19.19
/@types/yargs-parser@21.0.3: /@types/yargs-parser@21.0.3:
resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==} resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==}
@ -9946,6 +9988,11 @@ packages:
resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
engines: {node: '>=0.8.x'} engines: {node: '>=0.8.x'}
/eventsource-parser@3.1.0:
resolution: {integrity: sha512-kJezFj9YFAMLeORyi7aCLxLbD5/qWMQnoMVlVPyHIll7lgRJCc3JVln9Vgl9nwQi0YkMnhdGTMNn7CkRRAptMg==}
engines: {node: '>=18.0.0'}
dev: true
/execa@5.1.1: /execa@5.1.1:
resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==}
engines: {node: '>=10'} engines: {node: '>=10'}
@ -11349,7 +11396,7 @@ packages:
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
dependencies: dependencies:
'@jest/types': 30.2.0 '@jest/types': 30.2.0
'@types/node': 22.19.11 '@types/node': 22.19.19
jest-util: 30.2.0 jest-util: 30.2.0
dev: true dev: true
@ -11502,7 +11549,7 @@ packages:
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
dependencies: dependencies:
'@jest/types': 30.2.0 '@jest/types': 30.2.0
'@types/node': 22.19.11 '@types/node': 22.19.19
chalk: 4.1.2 chalk: 4.1.2
ci-info: 4.4.0 ci-info: 4.4.0
graceful-fs: 4.2.11 graceful-fs: 4.2.11
@ -11551,7 +11598,7 @@ packages:
resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==}
engines: {node: '>= 10.13.0'} engines: {node: '>= 10.13.0'}
dependencies: dependencies:
'@types/node': 22.19.11 '@types/node': 22.19.19
merge-stream: 2.0.0 merge-stream: 2.0.0
supports-color: 8.1.1 supports-color: 8.1.1
dev: true dev: true
@ -11663,6 +11710,10 @@ packages:
resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==}
dev: true dev: true
/json-schema@0.4.0:
resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==}
dev: true
/json-stable-stringify-without-jsonify@1.0.1: /json-stable-stringify-without-jsonify@1.0.1:
resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
@ -16387,3 +16438,6 @@ packages:
compress-commons: 6.0.2 compress-commons: 6.0.2
readable-stream: 4.7.0 readable-stream: 4.7.0
dev: false dev: false
/zod@4.4.3:
resolution: {integrity: sha512-ytENFjIJFl2UwYglde2jchW2Hwm4GJFLDiSXWdTrJQBIN9Fcyp7n4DhxJEiWNAJMV1/BqWfW/kkg71UDcHJyTQ==}

View file

@ -2,6 +2,7 @@
"$schema": "https://turborepo.dev/schema.json", "$schema": "https://turborepo.dev/schema.json",
"tasks": { "tasks": {
"build": { "build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"] "outputs": ["dist/**"]
}, },
"check-types": { "check-types": {