| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- {
- "$schema": "https://turbo.build/schema.json",
- "tasks": {
- "lint": {},
- "check-types": {
- "dependsOn": ["^build"]
- },
- "test": {
- "dependsOn": ["^build"]
- },
- "format": {},
- "clean": {
- "cache": false
- },
- "build": {
- "dependsOn": ["^build"],
- "outputs": ["dist/**"],
- "inputs": ["src/**", "package.json", "tsconfig.json", "tsup.config.ts", "vite.config.ts"]
- },
- "watch:tsc": {
- "cache": false
- },
- "storybook": {
- "cache": false,
- "persistent": true
- },
- "storybook:build": {
- "outputs": ["storybook-static/**"]
- },
- "jetbrains:bundle": {
- "cache": false,
- "dependsOn": ["@kilo-code/jetbrains-plugin#bundle"]
- },
- "jetbrains:run-bundle": {
- "cache": false,
- "dependsOn": ["@kilo-code/jetbrains-plugin#run:bundle"]
- },
- "jetbrains:build": {
- "dependsOn": ["@kilo-code/jetbrains-plugin#build"]
- },
- "jetbrains:run": {
- "dependsOn": ["@kilo-code/jetbrains-plugin#run"]
- },
- "jetbrains-host:build": {
- "dependsOn": ["@kilo-code/jetbrains-host#bundle:package"]
- },
- "cli:build": {
- "dependsOn": ["@kilocode/cli#build"]
- },
- "cli:bundle": {
- "dependsOn": ["@kilocode/cli#build"]
- },
- "chromatic": {
- "dependsOn": ["storybook:build"],
- "cache": false
- },
- "playwright": {
- "cache": false
- }
- }
- }
|