Closed fredericbonnet closed 4 years ago
Yeah I screwed up the submission date for Hacktoberfest. I genuinely thought the PR had to be accepted between Oct 1-30, but actually that's the submission date that counts :)
If you don't mind, you can close/reject this PR and I'll submit a new one tomorrow with your proposed changes.
Yeah I screwed up the submission date for Hacktoberfest. I genuinely thought the PR had to be accepted between Oct 1-30, but actually that's the submission date that counts :)
Oh I misunderstood this too! But it does make sense :smile:
If you don't mind, you can close/reject this PR and I'll submit a new one tomorrow with your proposed changes.
I don't mind, let's do that :+1:
This pull request fixes issue #8 using
npm-run-all
as suggested. It uses the-s
flag for sequential execution oftest:*
subscripts.npm-run-all
will run all matching NPM scripts in the order they are defined inpackage.json
, so it should run in the same order as the original script.I have also added the
-l
flag that prefixes each script output with the script name for easier troubleshooting.npm test
will stop at the first subscript failure.npm test -- -c
will run all the subscripts regardless of their completion status.Happy Hacktoberfest!