lerna.json 504 B

1234567891011121314151617181920212223242526
  1. {
  2. "npmClient": "npm",
  3. "packages": [
  4. "packages/*",
  5. "plugins/*",
  6. "src/setup/*"
  7. ],
  8. "version": "0.20.4",
  9. "ignoreChanges": [
  10. "**/*.md",
  11. "**/*.spec.tsx?",
  12. "**/*.spec.jsx?",
  13. "**/__mocks__/**"
  14. ],
  15. "command": {
  16. "publish": {
  17. "message": "chore(superset-ui): publish %s",
  18. "graphType": "all"
  19. },
  20. "version": {
  21. "message": "chore(superset-ui): publish %s",
  22. "exact": true
  23. }
  24. },
  25. "$schema": "node_modules/lerna/schemas/lerna-schema.json"
  26. }