Revision 149096016f70fd815540d62c0989fd99cdc809e0 authored by Johann-S on 30 May 2018, 07:46:50 UTC, committed by Johann-S on 01 June 2018, 07:10:25 UTC
1 parent 2d90d36
Raw File
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: '4.1.1',
  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