mirror of
https://github.com/baptisteArno/typebot.io.git
synced 2026-07-21 21:13:45 +08:00
Restore the automatic Prisma generation and schema push dependencies that were dropped during the Nx migration.
35 lines
625 B
JSON
35 lines
625 B
JSON
{
|
|
"$schema": "./node_modules/nx/schemas/nx-schema.json",
|
|
"tui": {
|
|
"enabled": false
|
|
},
|
|
"plugins": [
|
|
{
|
|
"plugin": "@nx/js/typescript"
|
|
},
|
|
{
|
|
"plugin": "@nx/next/plugin"
|
|
},
|
|
{
|
|
"plugin": "@nx/vite/plugin"
|
|
}
|
|
],
|
|
"targetDefaults": {
|
|
"dev": {
|
|
"dependsOn": ["^db:generate", "^db:push"]
|
|
},
|
|
"@nx/esbuild:esbuild": {
|
|
"cache": true,
|
|
"dependsOn": ["^build"],
|
|
"inputs": ["default", "^default"]
|
|
},
|
|
"@nx/vitest:test": {
|
|
"cache": true,
|
|
"inputs": ["default", "^default"]
|
|
},
|
|
"test": {
|
|
"dependsOn": ["^build"]
|
|
}
|
|
}
|
|
}
|