0.2.0 • Published 7 years ago
run-all-the-things v0.2.0
run-all-the-things

👟 Run scripts in parallel
CLI runs NPM scripts
npm i run-all-the-things -DAnd run in NPM scripts
things test lintUse as an NPX module without installing
npx run-all-the-things test lintPackage executes shell commands in parallel
const run = require('run-all-the-things');
await run([
'npm t',
'npm run lint',
'echo "number three"'
]);