mirror of
https://github.com/uni-stack/uniwind.git
synced 2026-09-14 20:07:03 +08:00
54260e3f8d
* chore: typecheck tests * chore: add to ci
47 lines
1.1 KiB
JSON
47 lines
1.1 KiB
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"ui": "tui",
|
|
"tasks": {
|
|
"build": {
|
|
"cache": false
|
|
},
|
|
"dev": {
|
|
"cache": false,
|
|
"interactive": true
|
|
},
|
|
"check:typescript": {},
|
|
"uniwind#check:typescript:test": {},
|
|
"lint": {},
|
|
"//#check:format": {},
|
|
"circular:check": {},
|
|
"precommit": {
|
|
"dependsOn": [
|
|
"lint",
|
|
"check:typescript",
|
|
"uniwind#check:typescript:test",
|
|
"circular:check",
|
|
"test:native",
|
|
"test:web",
|
|
"test:types",
|
|
"//#check:format"
|
|
]
|
|
},
|
|
"test": {
|
|
"dependsOn": ["test:native", "test:web", "test:types", "test:e2e"]
|
|
},
|
|
"test:native": {
|
|
"cache": false
|
|
},
|
|
"test:web": {
|
|
"cache": false
|
|
},
|
|
"test:types": {
|
|
"dependsOn": ["build"],
|
|
"cache": false
|
|
},
|
|
"test:e2e": {
|
|
"cache": false
|
|
}
|
|
}
|
|
}
|