Best way to run subset of packages #176
-
First, thank you for open sourcing this wonderful project! I have it set up on my more simple projects and things are working great! I've come into a more complex use case and am having trouble understanding the best way to set things up. I have a monorepo where we need to run a subset of packages and their dependencies, but not sure if I should be trying to use The project is set up similar to this: packages/ Where I want to do things like run |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Definitely feel the pain. Yes you can separate into We want to land |
Beta Was this translation helpful? Give feedback.
Definitely feel the pain.
Yes you can separate into
yarn dev:docs
andyarn dev:figma
etc and have those use--scope
(also recall that you can pass multiple--scope
flags).We want to land
--filter
#81 and also #144 which i think will be massive quality of life changes.