package.js 502 B

1234567891011121314151617
  1. // package metadata file for Meteor.js
  2. Package.describe({
  3. name: 'twbs:bootstrap', // https://atmospherejs.com/twbs/bootstrap
  4. summary: 'The most popular front-end framework for developing responsive, mobile first projects on the web.',
  5. version: '4.3.1',
  6. git: 'https://github.com/twbs/bootstrap.git'
  7. });
  8. Package.onUse(function (api) {
  9. api.versionsFrom('METEOR@1.0');
  10. api.use('jquery', 'client');
  11. api.addFiles([
  12. 'dist/css/bootstrap.css',
  13. 'dist/js/bootstrap.js'
  14. ], 'client');
  15. });