https://github.com/twbs/bootstrap
Revision 086a0e2a1cb6d5d71b34bea0c27c9c266e2704e3 authored by Edward Ezekiel on 15 March 2024, 17:23:43 UTC, committed by GitHub on 15 March 2024, 17:23:43 UTC
* feat(masthead):  Update masthead to HeroDevs EOL

Add box-arrow-up-right icon.

* Update masthead.html

* Update icons.html

---------

Co-authored-by: Mark Otto <markdotto@gmail.com>
1 parent 545a650
Raw File
Tip revision: 086a0e2a1cb6d5d71b34bea0c27c9c266e2704e3 authored by Edward Ezekiel on 15 March 2024, 17:23:43 UTC
Update masthead to HeroDevs EOL (#39749)
Tip revision: 086a0e2
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.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