https://github.com/twbs/bootstrap
Revision 86b4c934fe9f36c401d1fd6f9ed93a3d4198ace4 authored by dependabot[bot] on 05 March 2024, 11:19:18 UTC, committed by GitHub on 05 March 2024, 11:19:18 UTC
Bumps [autoprefixer](https://github.com/postcss/autoprefixer) from 10.4.17 to 10.4.18.
- [Release notes](https://github.com/postcss/autoprefixer/releases)
- [Changelog](https://github.com/postcss/autoprefixer/blob/main/CHANGELOG.md)
- [Commits](https://github.com/postcss/autoprefixer/compare/10.4.17...10.4.18)

---
updated-dependencies:
- dependency-name: autoprefixer
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent de4767a
Raw File
Tip revision: 86b4c934fe9f36c401d1fd6f9ed93a3d4198ace4 authored by dependabot[bot] on 05 March 2024, 11:19:18 UTC
Build(deps-dev): Bump autoprefixer from 10.4.17 to 10.4.18 (#39732)
Tip revision: 86b4c93
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.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