Meteor integration.

This commit is contained in:
David Craven
2015-05-16 15:22:56 +02:00
parent f96d55965a
commit 0628cee6d7
2 changed files with 21 additions and 0 deletions

View File

@@ -20,6 +20,7 @@ Four quick start options are available:
* Clone the repo: `git clone git://github.com/jasny/bootstrap.git`.
* Install with [Bower](http://bower.io): `bower install jasny-bootstrap`.
* Use [cdnjs](http://cdnjs.com/libraries/jasny-bootstrap).
* Install with [Meteor](https://meteor.com): `meteor add jasny:bootstrap`.
Read the [Getting Started page](http://jasny.github.io/bootstrap/getting-started/) for information on the framework contents, templates and examples, and more.

20
package.js Normal file
View File

@@ -0,0 +1,20 @@
// package metadata file for Meteor.js
Package.describe({
name: 'jasny:bootstrap', // http://atmospherejs.com/jasny/bootstrap
version: '3.1.3',
summary: 'Jasny Bootstrap (official): The missing components for your favorite front-end framework.',
git: 'https://github.com/jasny/bootstrap.git',
documentation: 'README.md'
});
Package.onUse(function (api) {
api.versionsFrom('METEOR@1.0');
api.use('jquery', 'client');
api.addFiles([
'dist/css/jasny-bootstrap.css',
'dist/js/jasny-bootstrap.js'
], 'client');
});