Replies: 1 comment
-
Hey, we've now got this done in #9404. It will be a part of the next canary release (v2.2.4-canary.9) and later. Thanks for suggesting! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Goals
run
andwatch
when run from a specific package directory, with the only difference being thatwatch
watchesNon-goals
No response
Background
Currently, if I
cd packages/a
and runturbo run build
, it will only use that package'sbuild
command as a target, only running its dependencies and then the build of that package.If I
cd packages/a
and runturbo watch build
, it suddenly looks for allbuild
commands in the workspace, and I have to add--filter
to limit the scope of the watcher.Proposal
Make
run
andwatch
the same.Beta Was this translation helpful? Give feedback.
All reactions