2015-01-31 13:23:06 -05:00
|
|
|
// package metadata file for Meteor.js
|
|
|
|
|
2015-04-28 03:15:32 -04:00
|
|
|
/* global Package:true */
|
|
|
|
|
2015-01-31 13:23:06 -05:00
|
|
|
Package.describe({
|
|
|
|
name: 'twbs:bootstrap', // http://atmospherejs.com/twbs/bootstrap
|
|
|
|
summary: 'The most popular front-end framework for developing responsive, mobile first projects on the web.',
|
2015-08-25 17:10:50 -04:00
|
|
|
version: '4.0.0-alpha',
|
2015-01-31 13:23:06 -05:00
|
|
|
git: 'https://github.com/twbs/bootstrap.git'
|
|
|
|
});
|
|
|
|
|
|
|
|
Package.onUse(function (api) {
|
|
|
|
api.versionsFrom('METEOR@1.0');
|
|
|
|
api.use('jquery', 'client');
|
2015-07-24 09:14:35 -04:00
|
|
|
api.addFiles([
|
2015-01-31 13:23:06 -05:00
|
|
|
'dist/css/bootstrap.css',
|
2015-04-26 06:53:45 -04:00
|
|
|
'dist/js/bootstrap.js'
|
2015-01-31 13:23:06 -05:00
|
|
|
], 'client');
|
|
|
|
});
|