-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.js
executable file
·69 lines (63 loc) · 1.94 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: 'dvz:orion-semantic-ui',
summary: 'Semantic-UI Orion Admin Theme',
version: '0.7.5',
git: 'https://github.com/amazingBastard/orion-semantic-ui'
});
Package.onUse(function(api) {
api.versionsFrom('1.0');
api.use([
'meteor-platform',
'orionjs:core@1.4.0',
'flemay:less-autoprefixer@1.1.0',
'aldeed:autoform@5.7.1',
'aldeed:tabular@1.1.0',
'useraccounts:semantic-ui@1.11.1',
'fabienb4:autoform-semantic-ui@0.4.5'
]);
api.addFiles([
'lib/init.js',
'lib/tabular.js'
]);
api.addFiles([
'lib/views/layout/layout.html',
'lib/views/layout/layout.js',
'lib/views/layout/layout.less',
'lib/views/sidebar/sidebar.html',
'lib/views/sidebar/sidebar.less',
'lib/views/accounts/login.html',
'lib/views/accounts/register-with-invitation.html',
'lib/views/accounts/index.html',
'lib/views/accounts/password.html',
'lib/views/accounts/profile.html',
'lib/views/accounts/profile.js',
'lib/views/accounts/accounts.less',
'lib/views/accounts/accounts.html',
'lib/views/accounts/update.html',
'lib/views/accounts/update.js',
'lib/views/accounts/create.html',
'lib/views/accounts/create.js',
'lib/views/config/update.html',
'lib/views/config/update.js',
'lib/views/dictionary/update.html',
'lib/views/dictionary/update.js',
'lib/views/collections/index.html',
'lib/views/collections/index.js',
'lib/views/collections/index.less',
'lib/views/collections/create.html',
'lib/views/collections/create.js',
'lib/views/collections/update.html',
'lib/views/collections/update.js',
'lib/views/collections/delete.html',
'lib/views/pages/index.html',
'lib/views/pages/create.html',
'lib/views/pages/update.html',
'lib/views/pages/delete.html',
'lib/views/pages/pages.js',
], 'client');
api.export('orion');
});
Package.onTest(function(api) {
api.use('tinytest');
api.use('orionjs:core');
});