forked from yogiben/meteor-admin
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.js
68 lines (58 loc) · 1.67 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
Package.describe({
name: "yogiben:admin",
summary: "A complete admin dashboard solution",
version: "1.2.6",
git: "https://github.com/yogiben/meteor-admin"
});
Package.on_use(function(api){
both = ['client','server']
api.versionsFrom('[email protected]');
api.use(
['iron:[email protected]',
'coffeescript',
'check',
'underscore',
'reactive-var',
'check',
'aldeed:[email protected]',
'aldeed:[email protected]',
'aldeed:[email protected]',
'alanning:[email protected]',
'raix:[email protected]',
'reywood:[email protected]',
'momentjs:[email protected]',
'aldeed:[email protected]',
'meteorhacks:[email protected]',
'zimme:[email protected]',
'mfactory:[email protected]'
],
both);
api.use(['[email protected] || 2.5.0','session','jquery','templating'],'client')
api.use(['email'],'server')
api.add_files([
'lib/both/AdminDashboard.coffee',
'lib/both/router.coffee',
'lib/both/utils.coffee',
'lib/both/startup.coffee',
'lib/both/collections.coffee'
], 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/js/admin_layout.js',
'lib/client/js/helpers.coffee',
'lib/client/js/templates.coffee',
'lib/client/js/events.coffee',
'lib/client/js/slim_scroll.js',
'lib/client/js/autoForm.coffee'
], 'client');
api.add_files([
'lib/server/publish.coffee',
'lib/server/methods.coffee'
], 'server');
api.export('AdminDashboard',both)
});