From 92f7da51240423804b76b901c0f7155f2b7448ae Mon Sep 17 00:00:00 2001 From: Nikolaj Kappler Date: Thu, 4 Dec 2025 15:19:51 +0100 Subject: [PATCH 1/2] add note about windows only supporting double quotes removed the original section about escaping (there was no escaping) and included it in the note about windows only supporting double quotes. --- README.md | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 8e79b4fc..a949b550 100644 --- a/README.md +++ b/README.md @@ -67,11 +67,16 @@ concurrently 'command1 arg' 'command2 arg' Otherwise **concurrently** would try to run 4 separate commands: `command1`, `arg`, `command2`, `arg`. -In package.json, escape quotes: - -```bash -"start": "concurrently 'command1 arg' 'command2 arg'" -``` +> [!IMPORTANT] +> Windows only supports double quotes: +> ```bash +> concurrently "command1 arg" "command2 arg" +> ``` +> +> Remember to escape the double quotes in your package.json when using Windows: +> ```json +> "start": "concurrently \"command1 arg\" \"command2 arg\"" +> ``` You can always check concurrently's flag list by running `concurrently --help`. For the version, run `concurrently --version`. From c3b2b8ee2d58629eb019a8b7903f5ca4c0d30a0c Mon Sep 17 00:00:00 2001 From: Nikolaj Kappler Date: Thu, 4 Dec 2025 15:30:20 +0100 Subject: [PATCH 2/2] added line breaks Not sure if prettier was complaining because of the missing empty lines between blocks. but since it doesn't affect rendering, I added them, maybe it helps --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index a949b550..093731b9 100644 --- a/README.md +++ b/README.md @@ -69,11 +69,13 @@ Otherwise **concurrently** would try to run 4 separate commands: > [!IMPORTANT] > Windows only supports double quotes: +> > ```bash > concurrently "command1 arg" "command2 arg" > ``` > > Remember to escape the double quotes in your package.json when using Windows: +> > ```json > "start": "concurrently \"command1 arg\" \"command2 arg\"" > ```