turbo.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "$schema": "https://turbo.build/schema.json",
  3. "tasks": {
  4. "lint": {},
  5. "check-types": {},
  6. "test": {
  7. "dependsOn": ["@roo-code/types#build"]
  8. },
  9. "format": {},
  10. "clean": {
  11. "cache": false
  12. },
  13. "build": {
  14. "outputs": ["dist/**"],
  15. "inputs": ["src/**", "package.json", "tsconfig.json", "tsup.config.ts", "vite.config.ts"]
  16. },
  17. "watch:tsc": {
  18. "cache": false
  19. },
  20. "storybook": {
  21. "cache": false,
  22. "persistent": true
  23. },
  24. "storybook:build": {
  25. "outputs": ["storybook-static/**"]
  26. },
  27. "jetbrains:bundle": {
  28. "cache": false,
  29. "dependsOn": ["@kilo-code/jetbrains-plugin#bundle"]
  30. },
  31. "jetbrains:run-bundle": {
  32. "cache": false,
  33. "dependsOn": ["@kilo-code/jetbrains-plugin#run:bundle"]
  34. },
  35. "jetbrains:build": {
  36. "dependsOn": ["@kilo-code/jetbrains-plugin#build"]
  37. },
  38. "jetbrains:run": {
  39. "dependsOn": ["@kilo-code/jetbrains-plugin#run"]
  40. },
  41. "cli:build": {
  42. "dependsOn": ["@kilocode/cli#build"]
  43. },
  44. "cli:bundle": {
  45. "dependsOn": ["@kilocode/cli#build"]
  46. },
  47. "chromatic": {
  48. "dependsOn": ["storybook:build"],
  49. "cache": false
  50. },
  51. "playwright": {
  52. "cache": false
  53. }
  54. }
  55. }