I've published a grunt plugin to npm that's been tracking the grunt 0.4 RCs by using the master
tag. I've been publishing with:
npm publish --tag master
Now that grunt 0.4 final has been released, I've re-published my plugin as latest
via:
npm publish
How can I now remove the master
tag from the npm repository? It is still listed in dist-tags
when I npm view [my-plugin]
.
Thanks in advance.