Replies: 1 comment 6 replies
-
If you only run a single task, the output of that task is not prefixed, while others are. When running multiple tasks, they are all prefixed. Task options have nothing to do with prefixing. |
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Context
In a project that contains sdk and app and app depends on sdk and both are javascript that need to be built.
In local development, when developing the app in hot reload, would expect the sdk to also start in watch mode too.
To simulate, create the following tasks for testing.
Results
preset: 'watcher'
. Start a noop tasks that depends on both tasks. Outputs are not prefixed.preset: 'watcher'
. Start the task that depends on another task. Outputs are not prefixed.persistent: true
andinteractive: true
which should be the same withpreset: 'watcher'
Questions
persistent: true
andinteractive: true
?Beta Was this translation helpful? Give feedback.
All reactions