Reputation: 4540
Is there a simple npm style way to build a package.json file for meteor.js? Or something similar so I can upload files to github without all the packages and someone can easily run a command to re-download all the attached required packages?
I downloaded some meteor files and saw that the .meteor folder was not there, so I could not view the packages file to even do it manually.
How is this handled in meteor?
Upvotes: 1
Views: 549
Reputation: 4049
You can .gitignore .meteor/local (the plugin cache is where your Meteor packages are). If someone clones your repo, the first time they run the meteor project all the dependences will install.
Upvotes: 1