mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Taken from the Bootstrap homepage: "Sleek, intuitive, and powerful front-end framework for faster and easier web development." Nitpick. There's no such thing as a "UX framework", and Bootstrap also provides more than just UI widgets, so I figured it would probably be best to just use the same description Twitter chose.
19 lines
716 B
JavaScript
19 lines
716 B
JavaScript
var path = require('path');
|
|
|
|
Package.describe({
|
|
summary: "Front-end framework from Twitter"
|
|
});
|
|
|
|
Package.on_use(function (api) {
|
|
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');
|
|
});
|