https://github.com/twbs/bootstrap
Revision 86c5371ac8da1636f0e8406f62e3a1610cad4b0f authored by dependabot[bot] on 18 July 2023, 15:09:56 UTC, committed by GitHub on 18 July 2023, 15:09:56 UTC
Bumps [hugo-bin](https://github.com/fenneclab/hugo-bin) from 0.111.2 to 0.111.3.
- [Release notes](https://github.com/fenneclab/hugo-bin/releases)
- [Commits](https://github.com/fenneclab/hugo-bin/compare/v0.111.2...v0.111.3)

---
updated-dependencies:
- dependency-name: hugo-bin
  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 fb348b6
Raw File
Tip revision: 86c5371ac8da1636f0e8406f62e3a1610cad4b0f authored by dependabot[bot] on 18 July 2023, 15:09:56 UTC
Build(deps-dev): Bump hugo-bin from 0.111.2 to 0.111.3 (#38929)
Tip revision: 86c5371
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