2022-06-28 14:40:39 +00:00
|
|
|
{
|
|
|
|
"$schema": "https://turborepo.org/schema.json",
|
|
|
|
"pipeline": {
|
|
|
|
"build": {
|
|
|
|
"dependsOn": ["^build"],
|
|
|
|
"outputs": ["dist/**"]
|
|
|
|
},
|
2023-05-16 11:04:47 +00:00
|
|
|
"web#build": {
|
|
|
|
"dependsOn": ["^build"],
|
|
|
|
"outputs": ["dist/**"]
|
|
|
|
},
|
2023-05-12 13:06:04 +00:00
|
|
|
"website#build": {
|
|
|
|
"dependsOn": ["^build"],
|
2023-05-16 12:41:24 +00:00
|
|
|
"env": ["TAMAGUI_TARGET"],
|
2023-05-12 13:06:04 +00:00
|
|
|
"outputs": [".next/**", "!.next/cache/**"]
|
|
|
|
},
|
2023-05-16 10:39:46 +00:00
|
|
|
"components#build": {
|
|
|
|
"dependsOn": ["^build"],
|
|
|
|
"outputs": ["dist/**", "storybook-static/**"]
|
|
|
|
},
|
2022-06-28 14:40:39 +00:00
|
|
|
"dev": {
|
|
|
|
"cache": false
|
|
|
|
},
|
|
|
|
"lint": {
|
|
|
|
"outputs": []
|
|
|
|
},
|
2022-06-29 14:46:51 +00:00
|
|
|
"typecheck": {
|
2022-06-28 14:40:39 +00:00
|
|
|
"outputs": []
|
|
|
|
},
|
|
|
|
"test": {
|
|
|
|
"outputs": [],
|
|
|
|
"dependsOn": []
|
|
|
|
},
|
|
|
|
"clean": {
|
|
|
|
"cache": false
|
|
|
|
}
|
|
|
|
},
|
2023-05-12 13:06:04 +00:00
|
|
|
"globalEnv": ["GITHUB_TOKEN"],
|
2022-06-28 14:40:39 +00:00
|
|
|
"globalDependencies": ["tsconfig.base.json"]
|
|
|
|
}
|