Files
meteor/packages/deprecated/bootstrap/package.js
David Greenspan 32f6edc624 Deprecate amplify,backbone,bootstrap,d3
packages/deprecated/README:

```
These packages are no longer actively maintained by MDG.  Seek
community alternatives instead.

Note that these packages still exist in atmosphere, and you can still
build a package that depends on one of them by specifying an explicit
package version.
```

Nothing technically prevents us from publishing further versions of these packages (like the ones in packages/non-core).
2014-09-25 11:02:34 -07:00

21 lines
763 B
JavaScript

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