Can anyone confirm that the yarnpkg registry is (partly) down?
status.yarnpkg.com
Can anyone confirm that the yarnpkg registry is (partly) down?
1–7 of 7 posts
Re: Can anyone confirm that the yarnpkg registry is (partly) down?
#2Some valid registry urls seems to be broken, for example:
https://registry.yarnpkg.com/@styled-system/css/-/css-5.1.5....
Re: Can anyone confirm that the yarnpkg registry is (partly) down?
#3I've had the same problem for a few hours now. I'm not able to deploy any of my projects.
Re: Can anyone confirm that the yarnpkg registry is (partly) down?
#4Yes, probably related to npm problems
https://status.npmjs.org/
Re: Can anyone confirm that the yarnpkg registry is (partly) down?
#5quick fix would be to use NPM directly
(create a `.yarnrc` file with `registry "https://registry.npmjs.org/"`)
Re: Can anyone confirm that the yarnpkg registry is (partly) down?
#6quick fix would be to use NPM directly (create a `.yarnrc` file with `registry " https://registry.npmjs.org/"` )
I think this only works if you're doing a clean yearn install. If you have a yarn.lock file already generated, chances are every package is pointing to registry.yarnpkg.com instead.
Re: Can anyone confirm that the yarnpkg registry is (partly) down?
#7quick fix would be to use NPM directly (create a `.yarnrc` file with `registry " https://registry.npmjs.org/"` )
I think this only works if you're doing a clean yearn install. If you have a yarn.lock file already generated, chances are every package is pointing to registry.yarnpkg.com instead.
Ah, yes. Didn't thought about that.