turbo.json 972 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "$schema": "https://turbo.build/schema.json",
  3. "extends": ["//"],
  4. "tasks": {
  5. "build:vercel": {
  6. "env": [
  7. "VERCEL_ENV",
  8. "GOOGLE_ANALYTICS_ID",
  9. "AMPLITUDE_API_KEY",
  10. "CLICKHOUSE_URL",
  11. "CLICKHOUSE_USERNAME",
  12. "CLICKHOUSE_PASSWORD",
  13. "SOLANA_RPC",
  14. "DISABLE_ACCESSIBILITY_REPORTING"
  15. ]
  16. },
  17. "fix:lint": {
  18. "dependsOn": [
  19. "//#install:modules",
  20. "fix:lint:eslint",
  21. "fix:lint:stylelint"
  22. ]
  23. },
  24. "fix:lint:eslint": {
  25. "dependsOn": ["//#install:modules", "^build"],
  26. "cache": false
  27. },
  28. "fix:lint:stylelint": {
  29. "dependsOn": ["//#install:modules"],
  30. "cache": false
  31. },
  32. "test:lint": {
  33. "dependsOn": ["test:lint:eslint", "test:lint:stylelint"]
  34. },
  35. "test:lint:eslint": {
  36. "dependsOn": ["//#install:modules", "^build"]
  37. },
  38. "test:lint:stylelint": {
  39. "dependsOn": ["//#install:modules"]
  40. }
  41. }
  42. }