https://github.com/twbs/bootstrap
Revision 43e4bf97a8b892af42f5a03ce7056efb6efa3b58 authored by Christian Oliff on 04 July 2023, 11:45:29 UTC, committed by GitHub on 04 July 2023, 11:45:29 UTC
`.custom-custom-radio` should be `.custom-radio`
1 parent 1ab75c8
Raw File
Tip revision: 43e4bf97a8b892af42f5a03ce7056efb6efa3b58 authored by Christian Oliff on 04 July 2023, 11:45:29 UTC
Fix class name on migration guide (#38865)
Tip revision: 43e4bf9
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.3.0',
  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