twbs--bootstrap/package.js

19 lines
490 B
JavaScript
Raw Normal View History

// package metadata file for Meteor.js
/* eslint-env meteor */
Package.describe({
2019-01-06 03:58:43 -05:00
name: 'twbs:bootstrap', // https://atmospherejs.com/twbs/bootstrap
summary: 'The most popular front-end framework for developing responsive, mobile first projects on the web.',
2020-11-24 09:37:20 -05:00
version: '5.0.0-beta1',
git: 'https://github.com/twbs/bootstrap.git'
})
Package.onUse(api => {
api.versionsFrom('METEOR@1.0')
2015-07-24 09:14:35 -04:00
api.addFiles([
'dist/css/bootstrap.css',
2015-04-26 06:53:45 -04:00
'dist/js/bootstrap.js'
], 'client')
})