NPM does not update readme

I released the module yesterday and soon made changes to readme. Readme has not been updated since the first release. How to force an update?

Module: https://www.npmjs.com/package/create-react-app-fullstack

+6
source share
1 answer

I had the same problem and the following steps worked for me.

  • npm cache clean --force

  • npm version patch and then finally

  • npm publish .

0
source

Source: https://habr.com/ru/post/1014717/


All Articles