Skip to content

Commit c76db0e

Browse files
Josh Goldbergmysticatea
authored andcommitted
Docs: typo fix in README.md: is/are (#120)
1 parent d56c268 commit c76db0e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ A CLI tool to run multiple npm-scripts in parallel or sequential.
1717
- **Simplify.** The official `npm run-script` command cannot run multiple scripts, so if we want to run multiple scripts, it's redundant a bit. Let's shorten it by glob-like patterns.<br>
1818
Before: `npm run clean && npm run build:css && npm run build:js && npm run build:html`<br>
1919
After: `npm-run-all clean build:*`
20-
- **Cross platform.** We sometimes use `&` to run multiple command in parallel, but `cmd.exe` (`npm run-script` uses it by default) does not support the `&`. Half of Node.js users is using it on Windows, so the use of `&` might block contributions. `npm-run-all --parallel` works well on Windows as well.
20+
- **Cross platform.** We sometimes use `&` to run multiple command in parallel, but `cmd.exe` (`npm run-script` uses it by default) does not support the `&`. Half of Node.js users are using it on Windows, so the use of `&` might block contributions. `npm-run-all --parallel` works well on Windows as well.
2121

2222
## 💿 Installation
2323

0 commit comments

Comments
 (0)