https://github.com/twbs/bootstrap
Revision cb7467b428d212562d0e8fe29f48588f5ea97ba7 authored by Robert Martin on 13 February 2024, 18:28:35 UTC, committed by GitHub on 13 February 2024, 18:28:35 UTC
Co-authored-by: Patrick H. Lauke <redux@splintered.co.uk>
Co-authored-by: Julien Déramond <juderamond@gmail.com>
1 parent d30385b
Raw File
Tip revision: cb7467b428d212562d0e8fe29f48588f5ea97ba7 authored by Robert Martin on 13 February 2024, 18:28:35 UTC
Docs: fix typos in Vite, Parcel and Webpack guides (#39592)
Tip revision: cb7467b
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.2',
  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