https://github.com/twbs/bootstrap
Revision d2986daa120644a20cefb8ebe609d1404aa34796 authored by Macinto5h on 14 March 2021, 19:07:24 UTC, committed by Mark Otto on 06 February 2022, 23:59:18 UTC
Co-Authored-By: Macallan Camara <44030647+Macinto5h@users.noreply.github.com>
Co-Authored-By: XhmikosR <xhmikosr@gmail.com>
1 parent 43a9216
Raw File
Tip revision: d2986daa120644a20cefb8ebe609d1404aa34796 authored by Macinto5h on 14 March 2021, 19:07:24 UTC
Add zebra striping for table columns
Tip revision: d2986da
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: '5.1.3',
  git: 'https://github.com/twbs/bootstrap.git'
})

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