turbo.json 569 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "$schema": "https://turborepo.org/schema.json",
  3. "baseBranch": "origin/master",
  4. "pipeline": {
  5. "build": {
  6. "dependsOn": ["^build"],
  7. "outputs": [".next/**"]
  8. },
  9. "lint": {
  10. "outputs": []
  11. },
  12. "test": {
  13. "dependsOn": ["^build"],
  14. "outputs": []
  15. },
  16. "test:build": {
  17. "outputs": []
  18. },
  19. "test:unit": {
  20. "outputs": []
  21. },
  22. "test:watch": {
  23. "outputs": []
  24. },
  25. "start": {
  26. "cache": false,
  27. "dependsOn": ["^build"]
  28. },
  29. "deploy": {
  30. "dependsOn": ["^build"]
  31. }
  32. }
  33. }