Meteor removes published packages

I am trying to port some of my packages to the new meteor 0.9 rc. 2 out of 3 does work, the third has a hack to it which works when installed through meteor add

.

Is there a way to remove the published package from the meteors package server? I don't want a broken package in the repository.

+3


source to share


2 answers


It is currently not possible to delete published packages on the meteor pack server and in the atmosphere.

However, you can create a new version with an empty one Package.onUse

. And a comment why it is empty. This makes your package inert and ensures that you don't break anyone's project.

Later edit:



Now you can hide it from search results with set-unmigrated

 meteor admin set-unmigrated YOURPACKAGE

      

+5


source


There is no way to remove a package from the .js atmosphere, but it is possible to hide the usage.
meteor admin set-unmigrated PACKAGE-NAME

... but this will not prevent users from adding the package to their project. meteor add PACKAGE-NAME

...



In this case, it makes sense to put an empty Package.onUse package and update the package as highlighted by Marco in his answer.

0


source







All Articles