34 lines
788 B
JSON
34 lines
788 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"extends": ["//"],
|
|
"tasks": {
|
|
"build:staging": {
|
|
"inputs": [
|
|
"src/**",
|
|
"tsconfig.json",
|
|
"tsconfig.*.json",
|
|
"vite.config.ts",
|
|
"package.json",
|
|
".env.staging",
|
|
".env.*.staging"
|
|
],
|
|
"outputs": ["dist/**", "tsconfig.tsbuildinfo"],
|
|
"outputLogs": "new-only",
|
|
"env": ["NODE_ENV", "VITE_*"]
|
|
},
|
|
"build:prod": {
|
|
"inputs": [
|
|
"src/**",
|
|
"tsconfig.json",
|
|
"tsconfig.*.json",
|
|
"vite.config.ts",
|
|
"package.json",
|
|
".env.production",
|
|
".env.*.production"
|
|
],
|
|
"outputs": ["dist/**", "tsconfig.tsbuildinfo"],
|
|
"outputLogs": "new-only",
|
|
"env": ["NODE_ENV", "VITE_*"]
|
|
}
|
|
}
|
|
}
|