package.js 783 B

1234567891011121314151617181920212223
  1. // package metadata file for Meteor.js
  2. Package.describe({
  3. name: 'twbs:bootstrap', // http://atmospherejs.com/twbs/bootstrap
  4. summary: 'The most popular front-end framework for developing responsive, mobile first projects on the web.',
  5. version: '3.3.4',
  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/fonts/glyphicons-halflings-regular.eot',
  13. 'dist/fonts/glyphicons-halflings-regular.svg',
  14. 'dist/fonts/glyphicons-halflings-regular.ttf',
  15. 'dist/fonts/glyphicons-halflings-regular.woff',
  16. 'dist/fonts/glyphicons-halflings-regular.woff2',
  17. 'dist/css/bootstrap.css',
  18. 'dist/js/bootstrap.js',
  19. ], 'client');
  20. });