Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

NPM does not update readme

Tags:

node.js

npm

I released a module yesterday and made changes to the readme soon after. The readme has not updated since the first release. How do I force an update?

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

like image 661
ekatz Avatar asked Feb 05 '17 18:02

ekatz


People also ask

Does NPM publish overwrite?

By default npm will publish to the public registry. This can be overridden by specifying a different default registry or using a scope in the name (see package. json ).


1 Answers

I was experiencing the same issue and the following steps worked for me.

  1. npm cache clean --force

  2. npm version patch

  3. npm publish

like image 128
Paul Fitzgerald Avatar answered Nov 02 '22 00:11

Paul Fitzgerald