Files
meteor/packages/bootstrap/package.js
2013-02-19 16:30:37 -08:00

20 lines
737 B
JavaScript

var path = require('path');
Package.describe({
summary: "Front-end framework from Twitter"
});
Package.on_use(function (api) {
api.use('jquery');
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');
});