Package.describe({ summary: "Front-end framework from Twitter", version: "1.0.1" }); Package.on_use(function (api) { api.use('jquery'); var path = Npm.require('path'); api.add_files(path.join('css', 'bootstrap.css'), 'client'); api.add_files(path.join('css', 'bootstrap-responsive.css'), 'client'); api.add_files(path.join('js', 'bootstrap.js'), 'client'); api.add_files(path.join('img', 'glyphicons-halflings.png'), 'client'); api.add_files(path.join('img', 'glyphicons-halflings-white.png'), 'client'); // XXX this makes the paths to the icon sets absolute. it needs // to be included _after_ the standard bootstrap css so // that its styles take precedence. api.add_files(path.join('css', 'bootstrap-override.css'), 'client'); });