lerna.json 801 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "lerna": "2.0.0-rc.4",
  3. "version": "7.0.0-beta.49",
  4. "changelog": {
  5. "repo": "babel/babel",
  6. "cacheDir": ".changelog",
  7. "labels": {
  8. "PR: Spec Compliancy :eyeglasses:": ":eyeglasses: Spec Compliancy",
  9. "PR: Breaking Change :boom:": ":boom: Breaking Change",
  10. "PR: New Feature :rocket:": ":rocket: New Feature",
  11. "PR: Bug Fix :bug:": ":bug: Bug Fix",
  12. "PR: Polish :nail_care:": ":nail_care: Polish",
  13. "PR: Docs :memo:": ":memo: Documentation",
  14. "PR: Internal :house:": ":house: Internal"
  15. }
  16. },
  17. "commands": {
  18. "publish": {
  19. "ignore": [
  20. "*.md",
  21. "test/**",
  22. "codemods/**"
  23. ]
  24. }
  25. },
  26. "packages": [
  27. "packages/*",
  28. "codemods/*"
  29. ],
  30. "npmClient": "yarn",
  31. "npmClientArgs": [
  32. "--no-lockfile"
  33. ]
  34. }