source: interfaz/programacion/Adminmail/static/bower_components/bootstrap/package.js @ e6dc6c5

Last change on this file since e6dc6c5 was 464af0f, checked in by Erwin Paredes <eparedes@…>, 8 years ago

Listado, crear, eliminar usuarios individual o por lotes; auteticar desde openldap

  • Property mode set to 100644
File size: 964 bytes
Line 
1// package metadata file for Meteor.js
2
3/* jshint strict:false */
4/* global Package:true */
5
6Package.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.6',
10  git: 'https://github.com/twbs/bootstrap.git'
11});
12
13Package.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});
Note: See TracBrowser for help on using the repository browser.