twbootstrap/package.js

20 lines
514 B
JavaScript
Raw Permalink Normal View History

// package metadata file for Meteor.js
/* eslint-env meteor */
Package.describe({
2019-01-06 09:58:43 +01: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.',
version: '4.6.2',
git: 'https://github.com/twbs/bootstrap.git'
})
Package.onUse(api => {
api.versionsFrom('METEOR@1.0')
api.use('jquery', 'client')
2015-07-24 15:14:35 +02:00
api.addFiles([
'dist/css/bootstrap.css',
2015-04-26 12:53:45 +02:00
'dist/js/bootstrap.js'
], 'client')
})