TheDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/meteor/meteor/llms.txt
Use this file to discover all available pages before exploring further.
meteor remove command removes one or more packages from your Meteor project.
Usage
Basic Usage
Remove a single package:Options
Allow packages in your project to be upgraded or downgraded to versions that are potentially incompatible with the current versions, if required to satisfy all package version constraints.
Examples
Remove default development packages:What Happens When You Remove a Package
When you remove a package:- The package is removed from
.meteor/packages - The package and its exclusive dependencies are unloaded
.meteor/versionsis updated- The app is rebuilt without the package
Viewing Current Packages
To see which packages are in your project:Common Packages to Remove
Development Packages
These should typically be removed before deploying to production:Switching UI Frameworks
When switching from one UI framework to another:Dependencies
Removing a package doesn’t automatically remove its dependencies if those dependencies are used by other packages in your project. To see why a package is in your project:Troubleshooting
If removing a package causes version conflicts:Related Commands
meteor add- Add packages to your projectmeteor list- List packages in your projectmeteor update- Update packages to newer versions