Files
meteor/packages/bootstrap/package.js
Rahul 40e92ee043 Specify that Bootstrap is a front-end framework
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.
2013-01-08 20:35:53 -08:00

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');
});