corrade-nucleus-nucleons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 // package metadata file for Meteor.js
2  
3 /* jshint strict:false */
4 /* global Package:true */
5  
6 Package.describe({
7 name: 'twbs:bootstrap', // http://atmospherejs.com/twbs/bootstrap
8 summary: 'The most popular front-end framework for developing responsive, mobile first projects on the web.',
9 version: '3.3.7',
10 git: 'https://github.com/twbs/bootstrap.git'
11 });
12  
13 Package.onUse(function (api) {
14 api.versionsFrom('METEOR@1.0');
15 api.use('jquery', 'client');
16 var assets = [
17 'dist/fonts/glyphicons-halflings-regular.eot',
18 'dist/fonts/glyphicons-halflings-regular.svg',
19 'dist/fonts/glyphicons-halflings-regular.ttf',
20 'dist/fonts/glyphicons-halflings-regular.woff',
21 'dist/fonts/glyphicons-halflings-regular.woff2'
22 ];
23 if (api.addAssets) {
24 api.addAssets(assets, 'client');
25 } else {
26 api.addFiles(assets, 'client', { isAsset: true });
27 }
28 api.addFiles([
29 'dist/css/bootstrap.css',
30 'dist/js/bootstrap.js'
31 ], 'client');
32 });