From c76db0e4306b89721d3a3144a9d7ec8a8f72863d Mon Sep 17 00:00:00 2001 From: Josh Goldberg Date: Fri, 22 Dec 2017 20:20:17 -0500 Subject: [PATCH] Docs: typo fix in README.md: is/are (#120) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 68fd0a8..b80d787 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ A CLI tool to run multiple npm-scripts in parallel or sequential. - **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.
Before: `npm run clean && npm run build:css && npm run build:js && npm run build:html`
After: `npm-run-all clean build:*` -- **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. +- **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. ## 💿 Installation