https://github.com/twbs/bootstrap
Revision ff2472becc4b0108d2d50bc6fc4cb78a6b3017d4 authored by The Fake Cake on 07 February 2022, 07:55:44 UTC, committed by GitHub on 07 February 2022, 07:55:44 UTC
1 parent d2986da
Raw File
Tip revision: ff2472becc4b0108d2d50bc6fc4cb78a6b3017d4 authored by The Fake Cake on 07 February 2022, 07:55:44 UTC
Set `cursor: default` on disabled `.form-check-label` (#35082)
Tip revision: ff2472b
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