Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 400 Bytes

README.md

File metadata and controls

20 lines (14 loc) · 400 Bytes

each-package

Run commands in each package folder starting with cwd skipping node_modules folders

# infinite depth
$ ep npm test

# top and second level only (default depth: Infinity)
$ ep -d1 npm test

# one at a time (default depth: concurrency)
$ ep -c1 npm test

# topological (default topological: false)
$ ep -t npm deploy

# one at a time (default private: false)
$ ep -p npm test