How can I delete a meteorite (atmosphere) package?

11,898

Solution 1

It is so easy. In your directory in terminal write it;

mrt remove package_name

Solution 2

Sometimes meteorite can be a bit glitchy depending on the version you have. Usually mrt remove package_name should do it but doing all of these should remove it and not let it get back till you add it back.

  1. Run

    mrt remove package_name

  2. Check your smart.json to see if your package has been removed from the packages : {} section.

  3. Delete the package/symlink if it still exists in /packages.

  4. If you still get an error claiming the package is not found remove it from meteor too

    meteor remove package_name

Solution 3

You can use meteor remove package_name

For example: meteor remove kadira:flow-router

Meteor 0.9 release rendered Meteorite and the mrt command obsolete. All new projects should use meteor >> source

Share:
11,898
swayziak
Author by

swayziak

Updated on June 09, 2022

Comments

  • swayziak
    swayziak about 2 years

    I want to delete a atmosphere package from my app, but I don't know how to remove it.

    Thanks.