https://github.com/twbs/bootstrap
Raw File
Tip revision: fa4fbc8798e432b37d6734e66c08da3985a75c89 authored by Jesse Mandel on 09 November 2022, 07:17:19 UTC
Backport: NuGet Changes
Tip revision: fa4fbc8
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: '4.6.2',
  git: 'https://github.com/twbs/bootstrap.git'
})

Package.onUse(api => {
  api.versionsFrom('METEOR@1.0')
  api.use('jquery', 'client')
  api.addFiles([
    'dist/css/bootstrap.css',
    'dist/js/bootstrap.js'
  ], 'client')
})
back to top