https://github.com/twbs/bootstrap
Revision 8d016c6cf9146dff0fed6bff5528bb7d8aced931 authored by Julien Déramond on 13 May 2022, 16:28:55 UTC, committed by GitHub on 13 May 2022, 16:28:55 UTC
Co-authored-by: XhmikosR <xhmikosr@gmail.com>
1 parent 5f8383a
Raw File
Tip revision: 8d016c6cf9146dff0fed6bff5528bb7d8aced931 authored by Julien Déramond on 13 May 2022, 16:28:55 UTC
Fix a11y keyboard access to docs navigation (#36340)
Tip revision: 8d016c6
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