Replies: 1 comment
-
|
I would not model this as
I would split the two long-running processes and start them in parallel instead. For example: run: {
tasks: {
"web:dev": {
command: "vp dev apps/web",
cache: false,
},
"i18n:dev": {
command: "vp run @workspace/i18n#dev",
cache: false,
},
},
}Then run both concurrently with workspace filtering / |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I want to run
@workspace/i18n#devwhen I runvp dev apps/webif it possible to dependsOn a persistent task ?
packages/i18n/package.json
Beta Was this translation helpful? Give feedback.
All reactions