gustafc
gustafc
Given the lack of reactions to this issue, I've added a Bash script to the original post which reproduces the error, using a local Nexus running in Docker. Enjoy!
For the record, I've been trying to get this working in Sherlock, but can't really figure out how to pass username/password to `yarn npm login`. The shell trick `(echo "$NEXUS_USER";...
@alamothe this issue is called _"yarn 3 ignores npmAuthTokens in ~/.yarnrc.yml"_ :) Running `yarn npm login` adds the token to `~/.yarnrc.yml`, so that's not a problem; the problem is that...
@arcanis I see. I eagerly await 4.0 then!
I'd like to point out that this is still a problem. Btw, more system info: ``` $ docker compose version Docker Compose version 2.0.0-beta.1 ```
It is sometimes _sort of possible_ to script this by using a shell hack like `(echo "$USER"; sleep 2; echo "$PASS") | yarn npm login` (and yes, the `sleep` is...
To anyone running into this problem, the solution to the problem I had was: 1. Using yarn 4 (since yarn 4 tries to merge configs from `~/.yarnrc.yml` and `$PROJECT/.yarnrc.yml`) 2....
To add to this pageant of download scripts, here's a bash version of @robertpkoenig's Python script that doesn't need anything you don't already have (the `exercism` CLI, `curl`, and pretty...
No response for over a week. Is there anything more I can do to help? I'm willing to provide a fix it if someone points me in the right direction,...
@koshic Thanks, adding `--always-auth` works 🌟 So I'll rename the bug so reflect that the problem is that `npmAlwaysAuth` in project config is ignored.