Faster start-up/tear-down of tasks #21206
andyjessop
started this conversation in
Feature Requests
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm at the point where I have my repo pretty well organised and optimised. However, I've had to make an uncomfortable choice. What I would like to do is to have each utility or component as its own package. That way I could absolutely optimise what tasks get run and when.
However, this has a significant drawback. The test for any given package might only take 20ms (Bun ftw), but Nx usually takes 500ms to run the task. On average, the time spent "in Nx" is at least 10x the time spent actually running the task (in my case). If I have 2000 packages and I have a change that requires testing all of them, you can see how this is a significant amount of time.
So this is sort of a request, sort of a question - can this time be reduced?
Beta Was this translation helpful? Give feedback.
All reactions