mirror of
https://github.com/vercel/eve.git
synced 2026-09-20 05:35:39 +08:00
0dbea627b0
Signed-off-by: Casey Gowrie <ctgowrie@gmail.com>
141 lines
2.9 KiB
JSON
141 lines
2.9 KiB
JSON
{
|
|
"$schema": "https://turborepo.com/schema.json",
|
|
"envMode": "strict",
|
|
"globalDependencies": [".nvmrc", "pnpm-workspace.yaml", "tsconfig.json"],
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"env": ["VERCEL"],
|
|
"inputs": [
|
|
"$TURBO_DEFAULT$",
|
|
"!.eve/**",
|
|
"!.next/**",
|
|
"!.nuxt/**",
|
|
"!.output/**",
|
|
"!.svelte-kit/**",
|
|
"!.turbo/**",
|
|
"!node_modules/**"
|
|
],
|
|
"outputs": ["dist/**", ".next/**", "!.next/cache/**", ".output/**", ".vercel/output/**"]
|
|
},
|
|
"build:types": {
|
|
"dependsOn": ["^build:types"],
|
|
"inputs": [
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
"**/*.cts",
|
|
"**/*.mts",
|
|
"**/*.d.ts",
|
|
"tsconfig*.json",
|
|
"package.json",
|
|
"!.eve/**",
|
|
"!.next/**",
|
|
"!.nuxt/**",
|
|
"!.output/**",
|
|
"!.svelte-kit/**",
|
|
"!.turbo/**",
|
|
"!node_modules/**"
|
|
],
|
|
"outputs": ["dist/**/*.d.ts", "dist/**/*.d.ts.map"]
|
|
},
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"test": {
|
|
"cache": false,
|
|
"inputs": [
|
|
"$TURBO_DEFAULT$",
|
|
"!.eve/**",
|
|
"!.next/**",
|
|
"!.nuxt/**",
|
|
"!.output/**",
|
|
"!.svelte-kit/**",
|
|
"!.turbo/**",
|
|
"!node_modules/**"
|
|
],
|
|
"outputs": []
|
|
},
|
|
"test:e2e": {
|
|
"cache": false,
|
|
"inputs": [
|
|
"$TURBO_DEFAULT$",
|
|
"!.eve/**",
|
|
"!.next/**",
|
|
"!.nuxt/**",
|
|
"!.output/**",
|
|
"!.svelte-kit/**",
|
|
"!.turbo/**",
|
|
"!node_modules/**"
|
|
],
|
|
"outputs": []
|
|
},
|
|
"test:integration": {
|
|
"cache": false,
|
|
"inputs": [
|
|
"$TURBO_DEFAULT$",
|
|
"!.eve/**",
|
|
"!.next/**",
|
|
"!.nuxt/**",
|
|
"!.output/**",
|
|
"!.svelte-kit/**",
|
|
"!.turbo/**",
|
|
"!node_modules/**"
|
|
],
|
|
"outputs": []
|
|
},
|
|
"test:scenario": {
|
|
"cache": false,
|
|
"inputs": [
|
|
"$TURBO_DEFAULT$",
|
|
"!.eve/**",
|
|
"!.next/**",
|
|
"!.nuxt/**",
|
|
"!.output/**",
|
|
"!.svelte-kit/**",
|
|
"!.turbo/**",
|
|
"!node_modules/**"
|
|
],
|
|
"outputs": []
|
|
},
|
|
"test:unit": {
|
|
"cache": false,
|
|
"inputs": [
|
|
"$TURBO_DEFAULT$",
|
|
"!.eve/**",
|
|
"!.next/**",
|
|
"!.nuxt/**",
|
|
"!.output/**",
|
|
"!.svelte-kit/**",
|
|
"!.turbo/**",
|
|
"!node_modules/**"
|
|
],
|
|
"outputs": []
|
|
},
|
|
"typecheck": {
|
|
"dependsOn": ["^build"],
|
|
"inputs": [
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
"**/*.cts",
|
|
"**/*.mts",
|
|
"**/*.d.ts",
|
|
"**/*.js",
|
|
"**/*.mjs",
|
|
"**/*.cjs",
|
|
"**/*.jsx",
|
|
"tsconfig*.json",
|
|
"package.json",
|
|
"!.eve/**",
|
|
"!.next/**",
|
|
"!.nuxt/**",
|
|
"!.output/**",
|
|
"!.svelte-kit/**",
|
|
"!.turbo/**",
|
|
"!node_modules/**"
|
|
],
|
|
"outputs": []
|
|
}
|
|
}
|
|
}
|