https://github.com/twbs/bootstrap
Raw File
Tip revision: 85830cd384adc40bcc36a493ce386db55af043f4 authored by Julien Déramond on 08 February 2023, 20:05:40 UTC
Fix npm run docs
Tip revision: 85830cd
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.0-alpha1',
  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