turbo.json 489 B

12345678910111213141516171819202122
  1. {
  2. "$schema": "https://turbo.build/schema.json",
  3. "pipeline": {
  4. "//#build": {
  5. "outputs": ["lib/**", "types/generated/**"],
  6. "inputs": ["src/**", "oxide/**", "nesting/**", "oxide-node-api-shim/**", "types/**"]
  7. },
  8. "test": {
  9. "env": ["OXIDE"],
  10. "dependsOn": ["//#build"]
  11. },
  12. "//#test": {
  13. "env": ["OXIDE"],
  14. "dependsOn": ["//#build"],
  15. "inputs": ["tests/**"]
  16. },
  17. "//#style": {
  18. "inputs": ["**/*.js", "**/*.ts"]
  19. }
  20. }
  21. }