0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-18 10:52:19 +01:00
Bootstrap/package.js
Chris Rebert 31d4139a74 Update version numbers using npm script
Errata from:
* 8ce5da30260c1368ae97838fcf010375071a7243
* 5d3144e8fb5c7202991b7614d77dfc00903fcb2e
which missed a few numbers.

[skip sauce]
[skip validator]
2015-12-08 18:16:47 -08:00

20 lines
537 B
JavaScript

// package metadata file for Meteor.js
/* global Package:true */
Package.describe({
name: 'twbs:bootstrap', // http://atmospherejs.com/twbs/bootstrap
summary: 'The most popular front-end framework for developing responsive, mobile first projects on the web.',
version: '4.0.0-alpha.2',
git: 'https://github.com/twbs/bootstrap.git'
});
Package.onUse(function (api) {
api.versionsFrom('METEOR@1.0');
api.use('jquery', 'client');
api.addFiles([
'dist/css/bootstrap.css',
'dist/js/bootstrap.js'
], 'client');
});