https://github.com/twbs/bootstrap
Revision 849fea5a1ec6a2c39451fefb21a70c6dc9ceac42 authored by Mark Otto on 14 September 2020, 22:03:52 UTC, committed by XhmikosR on 15 September 2020, 05:19:58 UTC
 Closes #30835 by leaving a comment in the source that the escape-svg() function must have quotes around data URIs.
1 parent 5f5f1cb
Raw File
Tip revision: 849fea5a1ec6a2c39451fefb21a70c6dc9ceac42 authored by Mark Otto on 14 September 2020, 22:03:52 UTC
Add a comment for escape-svg function
Tip revision: 849fea5
package.js
// package metadata file for Meteor.js

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: '5.0.0-alpha1',
  git: 'https://github.com/twbs/bootstrap.git'
});

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