beemojs / beemo

🤖 Centralized configuration layer for dev tools. Beep boop.
https://beemo.dev
MIT License
143 stars 9 forks source link

Parallel executions #8

Closed milesj closed 6 years ago

milesj commented 6 years ago

Most drivers don't need this, but some would benefit from it, like Babel. A possible use case/example: beemo babel --react --flow --parallel="--cjs" --parallel="--esm". This would run the babel command twice, with the args --react --flow --cjs and --react --flow --esm passed respectively.

milesj commented 6 years ago

How to handle multiple .babelrc files with different configuration? Pass separately with --config?