chore: drop npx prefix from concurrently commands#1505
Merged
pulpdrew merged 2 commits intohyperdxio:mainfrom Dec 19, 2025
Merged
chore: drop npx prefix from concurrently commands#1505pulpdrew merged 2 commits intohyperdxio:mainfrom
pulpdrew merged 2 commits intohyperdxio:mainfrom
Conversation
- adding `npx` to the front adds an extra ~80MB of RAM usage, due to the overhead of `npx` - however, we don't need it in these places because they're either coming via `yarn`, which automatically does the path resolution, or we're in Docker, where the `concurrently` binary is in the PATH - this saves ~80MB of RAM in local dev and production
|
@daniellockyer is attempting to deploy a commit to the HyperDX Team on Vercel. A member of the Team first needs to authorize it. |
|
pulpdrew
approved these changes
Dec 19, 2025
Contributor
pulpdrew
left a comment
There was a problem hiding this comment.
LGTM, thanks for the contribution!
knudtty
pushed a commit
that referenced
this pull request
Apr 16, 2026
Co-authored-by: Drew Davis <drew.davis@clickhouse.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
npxto the front adds an extra ~80MB of RAM usage, due to the overhead ofnpxyarn, which automatically does the path resolution, or we're in Docker, where theconcurrentlybinary is in the PATHI've tested this locally and everything continues to work as expected.
Noticed whilst playing around with the all-in-one image 🙂