mirror of
https://github.com/cosscom/coss.git
synced 2026-09-14 20:06:50 +08:00
9efaa03f43
* feat: add typecheck workflow for pull requests Co-Authored-By: eunjae@cal.com <hey@eunjae.dev> * refactor: rename typecheck to type-check and add packages/ui support Co-Authored-By: eunjae@cal.com <hey@eunjae.dev> * refactor: remove unnecessary type-check:ci script Co-Authored-By: eunjae@cal.com <hey@eunjae.dev> * refactor: revert type-check back to typecheck Co-Authored-By: eunjae@cal.com <hey@eunjae.dev> --------- Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
28 lines
524 B
JSON
28 lines
524 B
JSON
{
|
|
"$schema": "https://turborepo.com/schema.json",
|
|
"globalEnv": ["NODE_ENV"],
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"inputs": ["$TURBO_DEFAULT$", ".env*"],
|
|
"outputs": [".next/**", "!.next/cache/**"]
|
|
},
|
|
"clean": {
|
|
"cache": false
|
|
},
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"lint": {
|
|
"cache": true,
|
|
"dependsOn": ["^lint"]
|
|
},
|
|
"typecheck": {
|
|
"cache": true,
|
|
"dependsOn": ["^typecheck"]
|
|
}
|
|
},
|
|
"ui": "tui"
|
|
}
|