https://github.com/twbs/bootstrap
Raw File
Tip revision: 043a03c95a2ad6738f85b65e53b9dbdfb03b8d10 authored by XhmikosR on 28 October 2021, 14:45:21 UTC
Release v4.6.1 (#35272)
Tip revision: 043a03c
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.1',
  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