diff options
Diffstat (limited to 'examples/with-prisma/turbo.json')
| -rw-r--r-- | examples/with-prisma/turbo.json | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/examples/with-prisma/turbo.json b/examples/with-prisma/turbo.json new file mode 100644 index 0000000..385119c --- /dev/null +++ b/examples/with-prisma/turbo.json @@ -0,0 +1,22 @@ +{ + "$schema": "https://turbo.build/schema.json", + "globalDependencies": ["**/.env.*local"], + "globalEnv": ["NODE_ENV"], + "pipeline": { + "build": { + "dependsOn": ["^build"], + "outputs": ["dist/**", ".next/**", "!.next/cache/**"] + }, + "db:migrate:deploy": {}, + "db:push": {}, + "db:seed": {}, + "dev": { + "cache": false, + "persistent": true + }, + "generate": { + "dependsOn": ["^generate"] + }, + "lint": {} + } +} |
