| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- {
- "$schema": "https://turbo.build/schema.json",
- "tasks": {
- "lint": {},
- "check-types": {},
- "test": {
- "dependsOn": ["@roo-code/types#build"]
- },
- "format": {},
- "clean": {
- "cache": false
- },
- "build": {
- "outputs": ["dist/**"],
- "inputs": ["src/**", "package.json", "tsconfig.json", "tsup.config.ts"]
- },
- "build:nightly": {},
- "bundle": {
- "dependsOn": ["^build"],
- "cache": false
- },
- "bundle:nightly": {
- "dependsOn": ["^build"],
- "cache": false
- },
- "vsix": {
- "dependsOn": ["bundle", "@roo-code/vscode-webview#build"],
- "cache": false
- },
- "vsix:nightly": {
- "dependsOn": ["bundle:nightly", "@roo-code/vscode-webview#build:nightly"],
- "cache": false
- },
- "watch:bundle": {
- "dependsOn": ["@roo-code/build#build", "@roo-code/types#build"],
- "cache": false
- },
- "watch:tsc": {
- "cache": false
- }
- }
- }
|