https://github.com/twbs/bootstrap
Revision 3619586c16ef30214ec8df9b6e3fbfa423c5f623 authored by 汪磊 on 22 July 2017, 02:50:14 UTC, committed by Mark Otto on 30 July 2017, 20:58:52 UTC
1 parent f4f63d8
Raw File
Tip revision: 3619586c16ef30214ec8df9b6e3fbfa423c5f623 authored by 汪磊 on 22 July 2017, 02:50:14 UTC
Update accessibility.md
Tip revision: 3619586
package.js
// package metadata file for Meteor.js

/* global Package:true */

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.0.0-alpha.6',
  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