Files
better-auth/turbo.json
2026-01-21 01:45:55 +00:00

109 lines
2.3 KiB
JSON

{
"$schema": "./node_modules/turbo/schema.json",
"globalDependencies": [
"package.json",
"tsconfig.json",
"pnpm-lock.yaml",
"pnpm-workspace.yaml"
],
"tasks": {
"dev": {
"cache": false,
"persistent": true
},
"build": {
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"outputs": [".next/**", "!.next/cache/**", "dist/**"]
},
"clean": {},
"format": {
"dependsOn": ["//#format"]
},
"//#format": {},
"lint": {},
"lint:types": {
"dependsOn": ["^build", "build"]
},
"lint:package": {
"dependsOn": ["^build", "build"]
},
"test": {
"dependsOn": ["^build", "build"],
"inputs": [
"$TURBO_DEFAULT$",
"vitest.config.*",
"src/**",
"test/**",
"tests/**",
"*.test.*",
"*.spec.*",
"package.json"
],
"outputs": [".vitest/**", "coverage/**", "test-results/**"],
"cache": true
},
"coverage": {
"dependsOn": ["^build", "build"],
"inputs": [
"$TURBO_DEFAULT$",
"vitest.config.*",
"src/**",
"test/**",
"tests/**",
"*.test.*",
"*.spec.*",
"package.json"
],
"outputs": ["coverage/**", "coverage-final.json", ".nyc_output/**"]
},
"e2e:smoke": {
"dependsOn": ["^build"],
"inputs": [
"$TURBO_DEFAULT$",
"vitest.config.*",
"playwright.config.*",
"test/**",
"tests/**",
"e2e/**",
"*.test.*",
"*.spec.*",
"package.json"
],
"outputs": ["test-results/**", "playwright-report/**"],
"cache": true
},
"e2e:integration": {
"dependsOn": ["^build"],
"inputs": [
"$TURBO_DEFAULT$",
"vitest.config.*",
"playwright.config.*",
"test/**",
"tests/**",
"e2e/**",
"*.test.*",
"*.spec.*",
"package.json"
],
"outputs": [
"coverage/**",
"coverage-final.json",
".nyc_output/**",
"test-results/**",
"playwright-report/**"
],
"cache": true
},
"deploy": {
"cache": false
},
"migrate": {
"cache": false
},
"generate": {
"cache": false
}
}
}