mirror of
https://github.com/twbs/bootstrap.git
synced 2025-04-04 22:25:19 +02:00
Some checks failed
BrowserStack / browserstack (push) Has been cancelled
Bundlewatch / bundlewatch (push) Has been cancelled
CodeQL / Analyze (push) Has been cancelled
cspell / cspell (push) Has been cancelled
CSS / css (push) Has been cancelled
Docs / docs (push) Has been cancelled
JS Tests / JS Tests (push) Has been cancelled
Lint / lint (push) Has been cancelled
CSS (node-sass) / css (push) Has been cancelled
Release notes / update_release_draft (push) Has been cancelled
* Bump version to v5.3.4 * Dist * Dist * dist again * re-run npm release --------- Co-authored-by: Mark Otto <markdotto@gmail.com>
19 lines
484 B
JavaScript
19 lines
484 B
JavaScript
// 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.4',
|
|
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')
|
|
})
|