-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.js
30 lines (24 loc) · 816 Bytes
/
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
Package.describe({
name: 'babrahams:constellation',
version: '0.4.17',
summary: 'A curated set of packages for Constellation',
git: 'https://github.com/JackAdams/constellation-distro.git',
documentation: 'README.md',
debugOnly: true
});
Package.onUse(function (api) {
api.versionsFrom(['1.8.2', '2.3']);
api.use('constellation:[email protected]');
api.use('babrahams:[email protected]');
api.use('constellation:[email protected]');
api.use('constellation:[email protected]');
api.use('constellation:[email protected]');
api.use('constellation:[email protected]');
api.use('constellation:[email protected]');
// api.use('lai:[email protected]');
api.use('constellation:[email protected]');
api.imply('constellation:console');
});
Package.onTest(function(api) {
api.use('tinytest');
});