-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
Don't always prune mirrored scoped packages resolved by URLs #3342
Conversation
The travis one seems spurious, but I'll look into the appveyor one! |
src/cli/commands/install.js
Outdated
if (resolved) { | ||
requiredTarballs.add(path.basename(resolved.split('#')[0])); | ||
if (dependency[0] === '@' && basename[0] !== '@') { | ||
// add the 0.23.0 observed behavior |
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.
Could you please remove this comment?
@bollwyvl thanks! :D Please give me some time to check the commits, if you need help, let me know, ok? :P |
@bollwyvl the PR looks great! @bestander could you please merge it? |
Hey, thanks! (and to you @bestander!) The hard work is really appreciated! yarn has been really great to work with. A bit of context: we're looking at adopting yarn across https://github.com/jupyterlab/jupyterlab, as well as shipping maintainer tooling (for at least pypi and conda, our two primary delivery mechanisms) that can leverage offline mirroring. While we're imagining a relatively small number of "kitchen sink" builds will cover many use cases, there will be the option to be to install additional extensions for an end user, which might trigger rebuild. We had been wrestling with this concept for years, but yarn might finally bring it home! |
Summary
With a
.yarnrc
configured for offline mirroring withyarn-offline-mirror-pruning
, packages that areresolved
inyarn.lock
to registry URLs, such as:...will indeed be mirrored as
@jupyterlab-about-extension-0.3.1.tgz
. However, this will be immediately pruned, as the tarball expected on disk will beabout-extension-0.3.1.tgz
(derived from the URL) which won't match as it is is not suitably mangled.This PR adds an extra expectedTarball for the pre-mangled version. I don't know if this is exactly the right approach, but local testing suggests it works, and since the expected-but-unfound tarballs aren't returned/checked, it didn't seem like it could hurt.
Test plan
This adds a new test case, with a copy of the existing mirror fixture, but with
yarn-offline-mirror-pruning
and ayarn.lock
as I have been seeing in my testing, as opposed to the file-based one. It didn't seem appropriate to add this to the original test case, but I can be easily persuaded otherwise!