This is how I remove jQuery from Meteor.
Before doing this, make sure your code is really jQuery independent. In addition, adding any Meteor packages depending on jQuery will no longer work as expected (for example: materialize: materialize).
So, if you want to make sure jQuery is removed from Meteor, no matter what, just put
Package.describe({ summary: "Remove jQuery from meteor", name: "jquery", version: '1.999.999', });
in packages/jquery/package.js . No need to clone. No need to add any other files. Check your .meteor/versions file for writing:
jquery@1.999.999
to confirm that it worked.
source share