| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- {
- "$schema": "https://turbo.build/schema.json",
- "extends": ["//"],
- "tasks": {
- "clean": {
- "cache": false,
- "outputs": []
- },
- "clean:kilocode": {
- "outputs": ["dist/kilocode/**"],
- "inputs": ["../bin-unpacked/extension/**"],
- "dependsOn": ["clean"]
- },
- "copy:kilocode": {
- "outputs": ["dist/kilocode/**"],
- "inputs": ["../bin-unpacked/extension/**"],
- "dependsOn": ["clean:kilocode", "kilo-code#vsix:unpacked"]
- },
- "build": {
- "cache": false,
- "outputs": ["dist/**"],
- "inputs": ["src/**"],
- "dependsOn": ["^build", "copy:kilocode"]
- },
- "start": {
- "cache": false,
- "dependsOn": ["build"]
- },
- "cli:bundle": {
- "cache": false,
- "outputs": ["dist/**"],
- "inputs": ["src/**", "package.dist.json", "esbuild.config.mjs"],
- "dependsOn": ["build", "deps:install"]
- },
- "deps:install": {
- "cache": false,
- "outputs": ["dist/node_modules/**"],
- "inputs": ["package.dist.json"],
- "dependsOn": ["build"]
- }
- }
- }
|