-
Notifications
You must be signed in to change notification settings - Fork 175
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
rebuild: include prefix when filtering with --only #850
base: main
Are you sure you want to change the base?
Conversation
I'm not sure if I should just replace |
9208213
to
d53dedc
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this needs tests for regression purposes.
Codecov Report
@@ Coverage Diff @@
## master #850 +/- ##
=======================================
Coverage 75.89% 75.89%
=======================================
Files 17 17
Lines 672 672
Branches 130 130
=======================================
Hits 510 510
Misses 118 118
Partials 44 44
Continue to review full report at Codecov.
|
The logic currently ignores a module prefix when filtering packages passed via `--only=`. This is quite confusing: to only rebuild something like `@theia/node-pty` we must pass `--only=node-pty`. This commit adds a lookup using the prefixed name.
2d375d0
to
f23eddf
Compare
f23eddf
to
d84d91e
Compare
I added tests, but I'll need to close this PR temporarily, I will re-open when ready. |
Ready to go again. |
drafting due to conflicts. i think i can work on resolving them and getting this shipped. |
The logic currently ignores a module prefix when filtering packages
passed via
--only=
. This is quite confusing: to only rebuildsomething like
@theia/node-pty
we must pass--only=node-pty
.This commit adds a lookup using the prefixed name.