-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.js
75 lines (67 loc) · 2.38 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
70
71
72
73
74
75
Package.describe({
name: 'constellation:console',
summary: 'An extensible development console for Meteor',
version: '1.4.11',
git: 'https://github.com/JackAdams/constellation.git',
documentation: 'README.md',
debugOnly: true
});
Package.onUse(function(api) {
var clientFiles = [
"client/lib/utils.js",
"client/lib/api.js",
"client/lib/setup.js",
"client/row_fullscreen/fullscreen.html",
"client/row_fullscreen/fullscreen.js",
"client/row_config/config.html",
"client/row_config/config.js",
"client/row_config/guide.html",
"client/row_config/guide.js",
"client/row_account/account.html",
"client/row_account/account.js",
"client/row_account/accountViewer.html",
"client/row_account/accountViewer.js",
"client/row_collection/collections.html",
"client/row_collection/collections.js",
"client/row_collection/search.html",
"client/row_collection/search.js",
"client/row_collection/docViewer.html",
"client/row_collection/docViewer.js",
"client/row_collection/docInsert.html",
"client/row_collection/docInsert.js",
"client/row_collection/docControls.html",
"client/row_collection/docControls.js",
"client/row_actions/undoRedo.html",
"client/row_actions/undoRedo.js",
"client/row_actions/actions.html",
"client/row_actions/actions.js",
"client/Constellation.css",
"client/Constellation.html",
"client/Constellation.js"
];
var serverFiles = [
"server/methods.js",
"server/publications.js"
];
var commonFiles = [
"common/common.js",
"common/utility_functions.js",
"common/mutators.js",
"common/methods.js"
];
api.versionsFrom(['1.8.2', '2.3']);
api.use(['[email protected]','[email protected]','[email protected]', 'tracker', 'mongo', 'session', 'reactive-var', 'reactive-dict'], 'client');
api.use(['check', 'random', 'underscore']);
// api.use('aldeed:[email protected]', {weak: true}); // This must go before: api.use('dburles:[email protected]');
api.use('dburles:[email protected]');
api.use('gwendall:[email protected]', 'client');
api.use('babrahams:[email protected]');
// api.use('accounts-base', {weak: true});
api.addFiles(commonFiles);
api.addFiles(clientFiles, "client");
api.addFiles(serverFiles, "server");
if (api.export) {
api.export('API', 'client');
api.export('Constellation');
}
});