https://github.com/twbs/bootstrap
Revision 88a6610895c05d05f4710d0783eb5ea2f30294fe authored by Julien Déramond on 11 May 2022, 18:51:00 UTC, committed by Mark Otto on 11 May 2022, 19:06:48 UTC
1 parent bbda152
Raw File
Tip revision: 88a6610895c05d05f4710d0783eb5ea2f30294fe authored by Julien Déramond on 11 May 2022, 18:51:00 UTC
Minor changes in 'Usage with JavaScript frameworks' description
Tip revision: 88a6610
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.1.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