We make use of Dispatches great Meteor Github Packages (mgp) package:
npm install --save mgp
Then, add the following command to your package.json
scripts:
"mgp": "mgp"
Create a file named git-packages.json
in your project root. Add a config for every (private) Meteor Github package that your project depends on:
{
"my:yet-another-private-package": {
"git": "[email protected]:my/private-packages.git",
"branch": "dev"
}
}
More information about how to configure your private packages can be found on the projects Github repo.