Skip to content

Commit

Permalink
feat: adding parallel execution via parallel loop argv (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
mateodelnorte authored Jun 13, 2019
1 parent f5be5ae commit 0be8406
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ module.exports = function(command) {
folders.unshift(process.cwd());

// remove loop flags, and let loop pick them up from process.env
['--exclude', '--exclude-only', '--include', '--include-only'].forEach(flag => {
['--exclude', '--exclude-only', '--include', '--include-only', '--parallel'].forEach(flag => {
const flagIndex = command.indexOf(flag);
if (flagIndex > -1) {
command = command.substring(0, flagIndex);
Expand Down

0 comments on commit 0be8406

Please sign in to comment.