-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.js
More file actions
62 lines (52 loc) · 1.5 KB
/
package.js
File metadata and controls
62 lines (52 loc) · 1.5 KB
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
Package.describe({
name: "buduguru:admin",
summary: "A complete admin dashboard solution",
version: "1.1.6",
git: "https://github.com/buduguru/meteor-admin"
});
Package.on_use(function(api){
both = ['client','server']
api.versionsFrom('METEOR@1.0');
api.use(
['iron:router@1.0.7',
'underscore',
'aldeed:collection2@2.3.2',
'aldeed:autoform@4.2.2',
'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/both/AdminDashboard.js',
'lib/both/router.js',
'lib/both/utils.js',
'lib/both/startup.js',
'lib/both/collections.js'
], both);
api.add_files([
'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/css/admin-custom.less',
'lib/client/css/less/AdminLTE.less',
'lib/client/js/admin_layout.js',
'lib/client/js/helpers.js',
'lib/client/js/templates.js',
'lib/client/js/events.js',
'lib/client/js/slim_scroll.js',
'lib/client/js/autoForm.js',
], 'client');
api.add_files([
'lib/server/publish.js',
'lib/server/methods.js'
], 'server');
});