Clean up your Meteor package cache!
npm install meteor-cleanerClean up your Meteor package cache!

``sh`
[meteor] npm install -g meteor-cleaner
If you install meteor-cleaner globally using the npm version bundled with Meteor, you can run the clean-package-cache command like a built-in Meteor command.
Note: Windows is currently not supported!
`sh`
[meteor] clean-package-cache [options]
clean-package-cache analyzes the packages in ~/.meteor and computes the amount of disk space that would be saved by removing versions according to the options explained below.--yes
Unless you pass the (-y) option, you are asked for confirmation before anything is removed.
After analyzing the packages, the results are stored in a cache (~/.meteor-cleaner-cache) that is valid for 24 hours or until versions are removed.clean-package-cache
This means that you can quickly try out different options before you decide which versions you want to remove.
You can force to analyze all packages again (for example, if Meteor has downloaded new packages in the meantime) using the --ignore-cache option or by removing the cache file.
By default, clean-package-cache removes all versions of each package.clean-package-cache
Using the following options, you can specify which versions you want to keep.
If you pass more than one option, computes the union of all matching versions.--keep-final --keep-latest 1
For example, removes all but the latest pre-releases.
--keep-latest n
Keep the latest versions of each package.
--keep-scanned path
Keep versions that are used by Meteor projects in .
--keep-final`
Keep final releases (everything that's not a pre-release).