mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
17 lines
599 B
JavaScript
17 lines
599 B
JavaScript
Package.describe({
|
|
summary: "UX/UI framework from Twitter"
|
|
});
|
|
|
|
Package.on_use(function (api) {
|
|
api.add_files('css/bootstrap.css', 'client');
|
|
api.add_files('css/bootstrap-responsive.css', 'client');
|
|
api.add_files('js/bootstrap.js', 'client');
|
|
api.add_files('img/glyphicons-halflings.png', 'client');
|
|
api.add_files('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('css/bootstrap-override.css', 'client');
|
|
});
|