Skip to content

Latest commit

 

History

History

run-all-the-things

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

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"'
]);