Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 685 Bytes

README.md

File metadata and controls

30 lines (23 loc) · 685 Bytes

run-all-the-things

👟 Run scripts in parallel

CLI runs NPM scripts

npm i run-all-the-things -D

And run in NPM scripts

things test lint

Use as an NPX module without installing

npx run-all-the-things test lint

Package executes shell commands in parallel

const run = require('run-all-the-things');

await run([
	'npm t',
	'npm run lint',
	'echo "number three"'
]);