https://github.com/twbs/bootstrap
Revision eacee3ad3fd5bef76c65fb9e49ab9fead57c1fca authored by Mark Otto on 13 May 2022, 06:07:55 UTC, committed by XhmikosR on 13 May 2022, 16:44:01 UTC
1 parent f7e8ca9
Raw File
Tip revision: eacee3ad3fd5bef76c65fb9e49ab9fead57c1fca authored by Mark Otto on 13 May 2022, 06:07:55 UTC
Add Fathom Analytics
Tip revision: eacee3a
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.2.0-beta1',
  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