mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-03-03 18:25:02 +08:00
35 lines
725 B
JSON
35 lines
725 B
JSON
|
{
|
||
|
"$schema": "https://turbo.build/schema.json",
|
||
|
"globalDependencies": [".env"],
|
||
|
"tasks": {
|
||
|
"parallel": {
|
||
|
"dependsOn": ["^parallel"]
|
||
|
},
|
||
|
"lint": {
|
||
|
"dependsOn": ["^parallel", "^build"]
|
||
|
},
|
||
|
"ts-check": {
|
||
|
"dependsOn": ["^parallel"]
|
||
|
},
|
||
|
"build": {
|
||
|
"dependsOn": ["^build"],
|
||
|
"outputs": ["dist/**", "build/**"]
|
||
|
},
|
||
|
"test": {
|
||
|
"cache": false
|
||
|
},
|
||
|
"dev": {
|
||
|
"dependsOn": ["^build"],
|
||
|
"persistent": true,
|
||
|
"cache": false
|
||
|
},
|
||
|
"@monkeytype/frontend#validate-json": {
|
||
|
"dependsOn": ["^parallel"]
|
||
|
},
|
||
|
"@monkeytype/frontend#build": {
|
||
|
"dependsOn": ["^build"],
|
||
|
"env": ["BACKEND_URL", "RECAPTCHA_SITE_KEY"]
|
||
|
}
|
||
|
}
|
||
|
}
|