-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.js
More file actions
28 lines (21 loc) · 687 Bytes
/
package.js
File metadata and controls
28 lines (21 loc) · 687 Bytes
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
Package.describe({
name: 'msavin:mongol',
summary: 'In-App MongoDB Editor',
version: '2.0.0',
git: 'https://github.com/msavin/Mongol.git',
documentation: 'README.md',
debugOnly: true
});
Package.onUse(function(api) {
var serverFiles = [
"server/methods.js",
"server/utilities.js"
];
api.versionsFrom("1.0");
// This must go before: api.use('dburles:mongo-collection-instances@0.3.1');
// Weak dependency: only used if app contains package
api.use('aldeed:collection2@3.0.0', {weak: true});
api.use('dburles:mongo-collection-instances@0.3.4');
api.use(["underscore","check"], "server")
api.add_files(serverFiles, "server");
});