The latest version of json5 from npmjs is 1.0.2 since yesterday. Is that intentional?
As a consequence tooling that has a policy to upgrade to any latest version is advising to 'upgrade' from version ^2 to 1.0.2 - e.g. with npm outdated:
~/things $ npm outdated
Package Current Wanted Latest Location Depended by
json5 2.2.2 2.2.2 1.0.2 node_modules/json5 things
If it's not intentional I believe the only recourse is to re-publish 2.2.2 as version 2.2.3 (with the default tag/ tag 'latest'). It could be useful to also re-publish 1.0.2 as 1.0.3, but with tag v1 or something similar.
The text was updated successfully, but these errors were encountered:
I was able to add a previous tag to v1.0.2 without having to release v1.0.3. I was not able to use v1 as the tag name.
Note: Since dist-tags share a namespace with semantic versions, avoid dist-tags that conflict with existing version numbers. We recommend avoiding dist-tags that start with a number or the letter "v".
The latest version of json5 from npmjs is 1.0.2 since yesterday. Is that intentional?
As a consequence tooling that has a policy to upgrade to any latest version is advising to 'upgrade' from version ^2 to 1.0.2 - e.g. with
npm outdated
:~/things $ npm outdated Package Current Wanted Latest Location Depended by json5 2.2.2 2.2.2 1.0.2 node_modules/json5 things
The text was updated successfully, but these errors were encountered: