monorepo.config.js 469 B

123456789101112131415
  1. module.exports = {
  2. // npmClientArgs: [ '--registry', 'http://localhost:4873' ], // verdaccio
  3. packages: [
  4. { path: 'packages?(-premium)/*', distDir: ourPkgDist },
  5. { path: 'packages-contrib/react', distDir: 'dist' },
  6. { path: 'packages-contrib/vue', distDir: 'dist' },
  7. { path: 'packages-contrib/angular', distDir: 'dist/fullcalendar' },
  8. 'example-projects/*'
  9. ]
  10. }
  11. function ourPkgDist(relPath) {
  12. return relPath.match(/__tests__/) ? '' : 'dist'
  13. }