-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.js
63 lines (57 loc) · 1.5 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
Package.describe({
name: 'mfactory:admin',
version: '0.0.2',
summary: 'A complete admin dashboard solution',
git: 'https://github.com/meteor-factory/meteor-admin.git',
documentation: 'README.md'
});
Package.onUse(function(api) {
api.versionsFrom('1.1.0.2');
api.use([
'templating',
'underscore',
'tracker',
'reactive-var',
'reactive-dict',
'mfactory:[email protected]',
'aldeed:[email protected]',
'aldeed:[email protected]',
'tmeasday:[email protected]'
]);
api.use([
'iron:[email protected]',
'kadira:[email protected]',
'kadira:[email protected]',
'accounts-ui',
'useraccounts:[email protected]',
'useraccounts:[email protected]'
], { weak: true });
api.addFiles([
'lib/admin.js',
'lib/router.js',
'lib/collections.js'
]);
api.addFiles([
'client/common/tree.js',
'client/common/login.html',
'client/common/login.js',
'client/header/header.html',
'client/layout/layout.html',
'client/layout/layout.js',
'client/sidebar/sidebar.html',
'client/sidebar/sidebar.js',
'client/navbar/navbar.html',
'client/navbar/navbar.js',
'client/dashboard/dashboard.html',
'client/dashboard/dashboard.js',
'client/collections/collections.html',
'client/collections/collections.js',
'client/breadcrumb/breadcrumb.html',
'client/breadcrumb/breadcrumb.js',
'client/helpers.js',
'client/defaults.js',
'client/autoform.js',
'client/style.css'
], 'client');
api.export('Admin');
});