If you accidentally publish a package to the wrong tag (e.g. @latest
when you meant to tag it as @next
) you can resolve as follows:
npm show PACKAGE_NAME versions # To view the versions you've published
npm dist-tags add PACKAGE_NAME@NEW_VERSION next # Tag the new package version as `@next`
npm dist-tags add PACKAGE_NAME@OLD_VERSION latest # Restore the correct `@latest` to be your previous release version
Thank you for this!