https://github.com/twbs/bootstrap
Revision 7571fe73b619628c31eae8edb63d719ede9a900b authored by XhmikosR on 14 July 2020, 16:21:39 UTC, committed by XhmikosR on 15 September 2020, 05:57:19 UTC
Note that we are using the bundle file already in our docs since 787441d.
1 parent 94c0f12
Raw File
Tip revision: 7571fe73b619628c31eae8edb63d719ede9a900b authored by XhmikosR on 14 July 2020, 16:21:39 UTC
docs: mention our bundle file clearly.
Tip revision: 7571fe7
package.js
// package metadata file for Meteor.js

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.0.0-alpha1',
  git: 'https://github.com/twbs/bootstrap.git'
});

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