mirror of
https://github.com/jasny/bootstrap.git
synced 2026-04-24 03:00:49 -04:00
Meteor integration.
This commit is contained in:
@@ -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
20
package.js
Normal 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');
|
||||
});
|
||||
Reference in New Issue
Block a user