https://github.com/twbs/bootstrap
Revision a6d774c93e4667e8a426a9a4f6644bc1b0bebad8 authored by dependabot[bot] on 21 February 2023, 15:27:06 UTC, committed by GitHub on 21 February 2023, 15:27:06 UTC
Bumps [rollup](https://github.com/rollup/rollup) from 3.15.0 to 3.17.2.
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rollup/rollup/compare/v3.15.0...v3.17.2)

---
updated-dependencies:
- dependency-name: rollup
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 28d9c0c
Raw File
Tip revision: a6d774c93e4667e8a426a9a4f6644bc1b0bebad8 authored by dependabot[bot] on 21 February 2023, 15:27:06 UTC
Build(deps-dev): Bump rollup from 3.15.0 to 3.17.2 (#38097)
Tip revision: a6d774c
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.3.0-alpha1',
  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