You can add exactly the components you need from Bootstrap using meteor add.
If you develop using an all-packages methodology, then any of your packages that
need very specific bootstrap functionality can api.use them.
-
meteor add matb33:bootstrap-full-- will give you the complete Bootstrap experience -
meteor add matb33:bootstrap-buttons-- will only load the minimum bootstrap styles to be able to render bootstrap button styles
matb33:bootstrap-full(adding only this package will pull in all other packages)
matb33:bootstrap-affix-jsmatb33:bootstrap-alert-jsmatb33:bootstrap-alertsmatb33:bootstrap-badgesmatb33:bootstrap-basematb33:bootstrap-breadcrumbsmatb33:bootstrap-button-groupsmatb33:bootstrap-button-jsmatb33:bootstrap-buttonsmatb33:bootstrap-carouselmatb33:bootstrap-close-iconmatb33:bootstrap-codematb33:bootstrap-collapse-jsmatb33:bootstrap-component-animationsmatb33:bootstrap-dropdownsmatb33:bootstrap-formsmatb33:bootstrap-glyphiconsmatb33:bootstrap-gridmatb33:bootstrap-input-groupsmatb33:bootstrap-jumbotronmatb33:bootstrap-labelsmatb33:bootstrap-list-groupmatb33:bootstrap-media-itemsmatb33:bootstrap-modal-jsmatb33:bootstrap-modalsmatb33:bootstrap-navbarmatb33:bootstrap-navsmatb33:bootstrap-pagermatb33:bootstrap-paginationmatb33:bootstrap-panelsmatb33:bootstrap-popoversmatb33:bootstrap-printmatb33:bootstrap-progress-barsmatb33:bootstrap-responsive-embedmatb33:bootstrap-scrollspy-jsmatb33:bootstrap-tab-jsmatb33:bootstrap-tablesmatb33:bootstrap-themematb33:bootstrap-thumbnailsmatb33:bootstrap-tooltipmatb33:bootstrap-transition-jsmatb33:bootstrap-typematb33:bootstrap-wells
- It's currently not possible to customize LESS variables with this approach, but it likely will be in the near future: https://meteor.hackpad.com/Improvements-to-LESS-and-other-CSS-preprocessors-fqDPbgOH8Fn
- Mathieu Bouchard (matb33)