https://github.com/twbs/bootstrap
Revision 877e6725e679007c93c1e5663d209216807fb3ee authored by dependabot[bot] on 12 July 2023, 05:19:03 UTC, committed by GitHub on 12 July 2023, 05:19:03 UTC
Bumps [terser](https://github.com/terser/terser) from 5.18.2 to 5.19.0.
- [Changelog](https://github.com/terser/terser/blob/master/CHANGELOG.md)
- [Commits](https://github.com/terser/terser/compare/v5.18.2...v5.19.0)

---
updated-dependencies:
- dependency-name: terser
  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 ccc7305
Raw File
Tip revision: 877e6725e679007c93c1e5663d209216807fb3ee authored by dependabot[bot] on 12 July 2023, 05:19:03 UTC
Build(deps-dev): Bump terser from 5.18.2 to 5.19.0 (#38901)
Tip revision: 877e672
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',
  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