mirror of
https://github.com/Kilo-Org/kilocode.git
synced 2026-09-01 15:32:11 +08:00
d06a10dbb8
- Add compile-only Gradle typecheck task so JetBrains CI no longer requires CLI binaries or buildPlugin to verify Kotlin compiles - Remove PrepareLocalCliTask from Gradle; CLI binary prep is now an explicit step via bun run build, not triggered implicitly from processResources - Remove @kilocode/cli#build dependency from JetBrains typecheck in Turbo so root typecheck and test:ci don't pull CLI bundling as a prerequisite for JetBrains compile - Add @kilocode/cli#build -> @kilocode/sdk#build ordering in Turbo to prevent CLI bundling from racing with SDK generated-source cleanup - Fix test-ci.ts: Windows gradlew.bat support, strip nested XML declarations from JUnit reports, exit with Gradle exit code
45 lines
1.2 KiB
JSON
45 lines
1.2 KiB
JSON
{
|
|
"$schema": "https://v2-8-13.turborepo.dev/schema.json",
|
|
"globalEnv": ["CI", "KILO_DISABLE_SHARE"],
|
|
"globalPassThroughEnv": ["CI", "KILO_DISABLE_SHARE"],
|
|
"tasks": {
|
|
"typecheck": {
|
|
"dependsOn": ["^typecheck"]
|
|
},
|
|
"build": {
|
|
"dependsOn": [],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"@kilocode/cli#build": {
|
|
"dependsOn": ["@kilocode/sdk#build"],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"@kilocode/cli#test": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": [],
|
|
"passThroughEnv": ["*"]
|
|
},
|
|
"@kilocode/cli#test:ci": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": [".artifacts/unit/junit.xml"],
|
|
"passThroughEnv": ["*"]
|
|
},
|
|
"@kilocode/kilo-docs#build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": [".next/**"],
|
|
"env": ["POSTHOG_API_KEY", "FREE_TIER_AMOUNT", "NEXT_PUBLIC_POSTHOG_KEY", "NEXT_PUBLIC_POSTHOG_HOST"]
|
|
},
|
|
"@kilocode/kilo-jetbrains#build": {
|
|
"dependsOn": ["@kilocode/cli#build"],
|
|
"outputs": ["build/distributions/**"]
|
|
},
|
|
"@kilocode/kilo-jetbrains#typecheck": {
|
|
"outputs": []
|
|
},
|
|
"@kilocode/kilo-jetbrains#test:ci": {
|
|
"dependsOn": ["@kilocode/kilo-jetbrains#typecheck"],
|
|
"outputs": [".artifacts/unit/junit.xml"]
|
|
}
|
|
}
|
|
}
|