twbs--bootstrap/package.js

20 lines
537 B
JavaScript
Raw Normal View History

// package metadata file for Meteor.js
2015-04-28 07:15:32 +00:00
/* global Package:true */
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.',
2016-09-05 19:41:44 +00:00
version: '4.0.0-alpha.4',
git: 'https://github.com/twbs/bootstrap.git'
});
Package.onUse(function (api) {
api.versionsFrom('METEOR@1.0');
api.use('jquery', 'client');
2015-07-24 13:14:35 +00:00
api.addFiles([
'dist/css/bootstrap.css',
2015-04-26 10:53:45 +00:00
'dist/js/bootstrap.js'
], 'client');
});