open-cli-tools / concurrently

Run commands concurrently. Like `npm run watch-js & npm run watch-less` but better.
https://www.npmjs.com/package/concurrently
MIT License
7k stars 228 forks source link

Concurrently does not execute other commands in Electronjs #420

Closed aes219 closed 1 year ago

aes219 commented 1 year ago

Concurrently only runs the npm run react-start command and does not execute the others:

"react-start": "react-scripts start",
    "electron-start": "electron .",
    "start": "concurrently \"npm run react-start\" \"wait-on -v tcp:127.0.0.1:3000/ && npm run electron-start\"",

image image