Tuts on creating custom packages?

Does anyone know of any decent tutorials that go over how to package up existing frameworks (eg. bootstrap) into packages? I often want to use a custom bootstrap implementation and would like to package it up so i can easily add it to new projects.

@orbyt

You can add local forked packages to Meteor project packages directory, like this:

To package.js, you can add your own package name, like I added wekan-fullcalendar. You can also at package.js add those files you use.

Then, add your package to Meteor project:

meteor add wekan-fullcalendar

Then, you can import or require it at that Javascript file, where you need to use that package.