-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.js
69 lines (55 loc) · 1.59 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
Package.describe({
name: "spirit:dashboard",
summary: "A complete dashboard solution",
version: "1.0.0",
git: ""
});
Package.on_use(function(api){
both = ['client','server']
api.versionsFrom('METEOR@1.0');
api.use(
['iron:router@1.0.7',
'coffeescript',
'underscore',
'aldeed:collection2@2.3.2',
'aldeed:autoform@4.2.2 || 5.0.0',
'aldeed:template-extension@3.1.1',
'alanning:roles@1.2.13',
'raix:handlebar-helpers@0.2.4',
'reywood:publish-composite@1.3.5',
'momentjs:moment@2.9.0',
'aldeed:tabular@1.0.6',
'meteorhacks:unblock@1.1.0'
],
both);
api.use(['less','session','jquery','templating'],'client')
api.use(['email'],'server')
api.add_files([
'lib/lib/AdminDashboard.coffee',
'lib/lib/router.coffee',
'lib/lib/utils.coffee',
'lib/lib/startup.coffee',
'lib/lib/collections.coffee'
], both);
api.add_files([
//AdminLTE
'lib/client/lib/AdminLTE/css/_all-skins.css',
'lib/client/lib/AdminLTE/css/AdminLTE.css',
'lib/client/lib/AdminLTE/js/app.js',
'lib/client/html/admin_templates.html',
'lib/client/html/admin_widgets.html',
'lib/client/html/admin_layouts.html',
'lib/client/html/admin_sidebar.html',
'lib/client/html/admin_header.html',
'lib/client/js/admin_layout.js',
'lib/client/js/helpers.coffee',
'lib/client/js/templates.coffee',
'lib/client/js/events.coffee',
'lib/client/js/autoForm.coffee',
], 'client');
api.add_files([
'lib/server/publish.coffee',
'lib/server/methods.coffee'
], 'server');
api.export('AdminDashboard',both)
});