43 lines
964 B
JSON
43 lines
964 B
JSON
{
|
|
"$schema": "https://turborepo.com/schema.json",
|
|
"ui": "tui",
|
|
"globalEnv": [
|
|
"AWS_ACCESS_KEY_ID",
|
|
"AWS_SECRET_ACCESS_KEY",
|
|
"AWS_REGION",
|
|
"S3_BUCKET_NAME",
|
|
"S3_ENDPOINT"
|
|
],
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"inputs": ["$TURBO_DEFAULT$", ".env*"],
|
|
"outputs": [".next/**", "!.next/cache/**", "bin/**", "out/**"],
|
|
"env": [
|
|
"AWS_ACCESS_KEY_ID",
|
|
"AWS_SECRET_ACCESS_KEY",
|
|
"AWS_REGION",
|
|
"S3_BUCKET_NAME",
|
|
"S3_ENDPOINT"
|
|
]
|
|
},
|
|
"build:native": {
|
|
"dependsOn": [],
|
|
"inputs": ["Sources/**", "Package.swift", "main.swift", "scripts/**"],
|
|
"outputs": ["bin/**"],
|
|
"cache": true
|
|
},
|
|
"format:check": {},
|
|
"lint": {
|
|
"dependsOn": ["format:check"]
|
|
},
|
|
"check-types": {
|
|
"dependsOn": ["^check-types"]
|
|
},
|
|
"dev": {
|
|
"dependsOn": ["^build"],
|
|
"cache": false,
|
|
"persistent": true
|
|
}
|
|
}
|
|
}
|