https://github.com/twbs/bootstrap
Raw File
Tip revision: c7de6107a86ebe65a6f5d5b88884256e5094ca92 authored by Mark Otto on 27 July 2016, 16:40:40 UTC
prep release
Tip revision: c7de610
package.js
// package metadata file for Meteor.js

/* global Package:true */

Package.describe({
  name: 'twbs:bootstrap',  // http://atmospherejs.com/twbs/bootstrap
  summary: 'The most popular front-end framework for developing responsive, mobile first projects on the web.',
  version: '4.0.0-alpha.3',
  git: 'https://github.com/twbs/bootstrap.git'
});

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