8

I unpublished the version using npm unpublish <package-name>@<version-xx> but i can't find a way to remove the version from verdaccio's (local) ui ?

Any idea ?

Fahd Lihidheb
  • 671
  • 4
  • 20
  • Same problem, I want to remove unpublished package from /verdaccio/storage (I'm using the docker image) – mbesson May 04 '21 at 15:05
  • 2
    If you are on linux then check this : https://github.com/verdaccio/verdaccio/issues/365#issuecomment-417906314 – magmine May 11 '21 at 10:46

1 Answers1

2
npm unpublish  --registry http://localhost:4873/ <package-name>@<version-xx> --force
jmoerdyk
  • 5,544
  • 7
  • 38
  • 49
xyz
  • 21
  • 2
  • 1
    While this code may solve the question, [including an explanation](//meta.stackexchange.com/q/114762) of how and why this solves the problem would really help to improve the quality of your post, and probably result in more up-votes. Remember that you are answering the question for readers in the future, not just the person asking now. Please edit your answer to add explanations and give an indication of what limitations and assumptions apply. – jasie Jan 27 '23 at 11:36