https://github.com/twbs/bootstrap
Raw File
Tip revision: 097a3e94551c94739aa6b0c9acfa19c165dd0aa7 authored by Mark Otto on 16 September 2020, 05:20:09 UTC
Add new .form-control-with-icons
Tip revision: 097a3e9
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