| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- {
- "$schema": "https://turbo.build/schema.json",
- "extends": ["//"],
- "tasks": {
- "clean": {
- "cache": false,
- "outputs": []
- },
- "clean:kilocode": {
- "outputs": ["dist/kilocode/**"],
- "inputs": ["../../bin-unpacked/extension/**"]
- },
- "copy:kilocode": {
- "outputs": ["dist/kilocode/**"],
- "inputs": ["../../bin-unpacked/extension/**"],
- "dependsOn": ["clean:kilocode", "kilo-code#vsix:unpacked"]
- },
- "build": {
- "cache": false,
- "outputs": ["dist/**"],
- "inputs": ["src/**"],
- "dependsOn": ["clean", "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"]
- }
- }
- }
|