2015-01-31 13:23:06 -05:00
|
|
|
// package metadata file for Meteor.js
|
|
|
|
|
2020-10-31 03:30:57 -04:00
|
|
|
/* eslint-env meteor */
|
|
|
|
|
2015-01-31 13:23:06 -05:00
|
|
|
Package.describe({
|
2019-01-06 03:58:43 -05:00
|
|
|
name: 'twbs:bootstrap', // https://atmospherejs.com/twbs/bootstrap
|
2015-01-31 13:23:06 -05:00
|
|
|
summary: 'The most popular front-end framework for developing responsive, mobile first projects on the web.',
|
2021-08-04 11:41:51 -04:00
|
|
|
version: '5.1.0',
|
2015-01-31 13:23:06 -05:00
|
|
|
git: 'https://github.com/twbs/bootstrap.git'
|
2020-10-31 03:30:57 -04:00
|
|
|
})
|
2015-01-31 13:23:06 -05:00
|
|
|
|
2020-10-31 03:30:57 -04:00
|
|
|
Package.onUse(api => {
|
|
|
|
api.versionsFrom('METEOR@1.0')
|
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'
|
2020-10-31 03:30:57 -04:00
|
|
|
], 'client')
|
|
|
|
})
|