Open
Description
Describe the bug
README is not correctly shown on self-hosted verdaccio using yarn npm publish
.
To Reproduce
(require docker to launch verdaccio so as to reproduce)
Reproduction
mkdir yarn-verdaccio-readme
cd yarn-verdaccio-readme
yarn set version berry
echo '
npmPublishRegistry: http://localhost:4873
unsafeHttpWhitelist: [localhost]
' >> .yarnrc.yml
echo '
{
"name": "yarn-verdaccio-readme",
"version": "0.1.0"
}
' > package.json
echo '# yarn-verdaccio-readme' > README.md
yarn
docker run --rm -p 4873:4873 -d verdaccio/verdaccio:4.8.1
echo 'input some random username/password'
yarn npm login --publish
yarn npm publish
echo 'open http://localhost:4873/-/web/detail/yarn-verdaccio-readme then you will see "ERROR: No README data found!".'
Screenshots
$ yarn npm publish
➤ YN0000: README.md
➤ YN0000: package.json
➤ YN0000: Package archive published
➤ YN0000: Done in 0.91s
Environment
- Yarn version 2.1.1
Additional context
README.md
is uploaded correctly.- No issue with
npm publish
.