turbo.json 636 B

1234567891011121314151617181920212223242526272829303132333435
  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. "chromatic": {
  28. "dependsOn": ["storybook:build"],
  29. "cache": false
  30. },
  31. "playwright": {
  32. "cache": false
  33. }
  34. }
  35. }