https://github.com/twbs/bootstrap
Revision 0840105d7f794c8f1c429eced58ffb80af453ff8 authored by XhmikosR on 09 December 2021, 19:52:39 UTC, committed by XhmikosR on 29 January 2022, 11:25:30 UTC
1 parent 558002f
Raw File
Tip revision: 0840105d7f794c8f1c429eced58ffb80af453ff8 authored by XhmikosR on 09 December 2021, 19:52:39 UTC
SelectorEngine: remove moot space
Tip revision: 0840105
package.js
// package metadata file for Meteor.js

/* eslint-env meteor */

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.',
  version: '5.1.3',
  git: 'https://github.com/twbs/bootstrap.git'
})

Package.onUse(api => {
  api.versionsFrom('METEOR@1.0')
  api.addFiles([
    'dist/css/bootstrap.css',
    'dist/js/bootstrap.js'
  ], 'client')
})
back to top