forked from ExactTarget/fuelux
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.js
More file actions
26 lines (23 loc) · 665 Bytes
/
package.js
File metadata and controls
26 lines (23 loc) · 665 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// package metadata file for Meteor.js
/* jshint strict:false */
/* global Package:true */
Package.describe({
name: 'exacttarget:fuelux', // http://atmospherejs.com/exacttarget/fuelux
summary: 'Base Fuel UX styles and controls',
version: '3.11.3',
git: 'https://github.com/ExactTarget/fuelux.git'
});
Package.onUse(function (api) {
api.versionsFrom('METEOR@1.0');
api.use('jquery', 'client');
api.addFiles([
'dist/fonts/fuelux.eot',
'dist/fonts/fuelux.svg',
'dist/fonts/fuelux.ttf',
'dist/fonts/fuelux.woff'
], 'client', { isAsset: true });
api.addFiles([
'dist/css/fuelux.css',
'dist/js/fuelux.js'
], 'client');
});