Jason Biondo
Jason Biondo

Reputation: 763

How do you alter /.meteor/local/build/static_cacheable/packages without them being overridden?

jquery is being loaded there and as a result, I can't change my version of jquery being used. I want to upgrade it to jquery 2.03. When I tried adding jquery 2.03 to my public directory my browser was still recognizing the jquery located in my packages folder. How do I override those files?

Upvotes: 3

Views: 433

Answers (1)

imslavko
imslavko

Reputation: 6676

You can create your own local jQuery package by copying jquery folder from ~/.meteor/packages/jquery to your project's packages folder. Then make all fixes you need in your local copy. Don't forget to meteor remove jquery to remove standard package.

Or just include jquery.min.js from cdn in your html's head.

Upvotes: 1

Related Questions