https://github.com/twbs/bootstrap
Revision f94f497ad5c3108b7f95242af586592cf274b9bd authored by GeoSot on 08 June 2021, 07:38:27 UTC, committed by Mark Otto on 23 June 2021, 02:50:21 UTC
* avoid extra work, creating ids
* simplify selectors and constrain search inside `config.target`
1 parent a816615
Raw File
Tip revision: f94f497ad5c3108b7f95242af586592cf274b9bd authored by GeoSot on 08 June 2021, 07:38:27 UTC
ScrollSpy: Make Proper use of the SelectorEngine
Tip revision: f94f497
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.0.2',
  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