0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-11 03:52:27 +01:00
Bootstrap/package.js

20 lines
537 B
JavaScript
Raw Permalink Normal View History

// package metadata file for Meteor.js
2015-04-28 10:15:32 +03:00
/* global Package:true */
Package.describe({
name: 'twbs:bootstrap', // https://atmospherejs.com/twbs/bootstrap
summary: 'The most popular front-end framework for developing responsive, mobile first projects on the web.',
2017-12-28 09:16:39 -08:00
version: '4.0.0-beta.3',
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 13:53:45 +03:00
'dist/js/bootstrap.js'
], 'client');
});