forked from uikit/uikit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.js
51 lines (48 loc) · 1.66 KB
/
package.js
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/* jshint strict:false */
/* global Package:true */
Package.describe({
name: 'zcurtis:uikit',
version: '2.20.4',
// Brief, one-line summary of the package.
summary: 'UIKit repackaged for Meteor (from fork)',
// URL to the Git repository containing the source code for this package.
git: '[email protected]:MeteorPackaging/uikit.git',
// By default, Meteor will default to using README.md for documentation.
// To avoid submitting documentation, set this field to null.
documentation: 'README.md'
});
Package.onUse(function(api) {
api.versionsFrom('[email protected]');
api.use('jquery', 'client');
api.addFiles([
'dist/fonts/fontawesome-webfont.eot',
'dist/fonts/fontawesome-webfont.ttf',
'dist/fonts/fontawesome-webfont.woff',
'dist/fonts/fontawesome-webfont.woff2',
'dist/css/uikit.almost-flat.css',
'dist/js/uikit.js',
'dist/js/components/accordion.js',
'dist/js/components/autocomplete.js',
'dist/js/components/datepicker.js',
'dist/js/components/form-password.js',
'dist/js/components/form-select.js',
'dist/js/components/grid.js',
'dist/js/components/htmleditor.js',
'dist/js/components/lightbox.js',
'dist/js/components/nestable.js',
'dist/js/components/notify.js',
'dist/js/components/pagination.js',
'dist/js/components/parallax.js',
'dist/js/components/search.js',
'dist/js/components/slider.js',
'dist/js/components/slideset.js',
'dist/js/components/sticky.js',
'dist/js/components/timepicker.js',
'dist/js/components/tooltip.js',
], 'client');
});
Package.onTest(function(api) {
//api.use('tinytest');
api.use('zcurtis:uikit');
//api.addFiles('uikit-tests.js');
});