Replies: 9 comments 9 replies
-
|
I think on Linux you can do something like "scripts: {
"start": "$_ run dev:compiler & $_ run dev:console",
"dev:compiler": "tsc --build --watch packages/tsconfig.json",
"dev:console": "$_ run hasura --project hasura console --address 0.0.0.0 --console-port 8081 --no-browser --log-level DEBUG --api-port 8097",
}And if we implement #2621, then it will probably work on all platforms |
Beta Was this translation helpful? Give feedback.
-
|
Hey @zkochan thank you very much for your response. In past I've used concurrently. It worked, but not very satisfying, because it leads to some problems, at least in my setup. The |
Beta Was this translation helpful? Give feedback.
-
|
Maybe we can add it. Not sure I currently use |
Beta Was this translation helpful? Give feedback.
-
|
I found a case where this was needed: It would be very useful to have cross-platform parallel processing functionality embedded in |
Beta Was this translation helpful? Give feedback.
-
|
+1. Having to add a |
Beta Was this translation helpful? Give feedback.
-
|
I wouldn't try it soon, but it seems like this one could be resolved by #6692 |
Beta Was this translation helpful? Give feedback.
-
|
My need falls under that request too and doesn't seem to be available at the moment: I need to run multiple commands in parallel in multiple workspaces:
I didn't found a way to do that unfortunately. |
Beta Was this translation helpful? Give feedback.
-
|
As of today, it is possible to run multiple scripts in parallel using regex. For instance, run all scripts that start with |
Beta Was this translation helpful? Give feedback.
-
|
+1 For this, would be great for pnpm to provide |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I didn't found any feature request or documentation about that. I'm experimenting with hasura and I want to run multiple commands in parallel. For example I have following definition:
With
startI bootstrap the compiler, but also backend and frontend in other packages. Now, for hasura, I must start theconsole, which is a permanent running process, like other three. It would be nice if pnpm supports the workflow above. I can imagine something like:or:
Beta Was this translation helpful? Give feedback.
All reactions