-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.js
31 lines (28 loc) · 997 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
31
"use strict";
Package.describe({
name: 'brettle:accounts-deluxe',
version: '0.2.2',
summary:
'Give all visitors anonymous accounts to which a login service can be ' +
'added with popular UI packages',
git: 'https://github.com/brettle/meteor-accounts-deluxe.git',
documentation: 'README.md'
});
Package.onUse(function(api) {
api.versionsFrom('1.0.4');
api.use('brettle:accounts-add-service@1.0.0');
api.use('brettle:accounts-logout-to-switch@0.4.0');
api.use('brettle:accounts-anonymous-auto@0.3.2');
api.use('brettle:accounts-patch-ui@0.1.6');
api.imply('accounts-base');
api.imply('brettle:accounts-add-service');
api.imply('brettle:accounts-logout-to-switch');
api.imply('brettle:accounts-anonymous-auto');
api.imply('brettle:accounts-patch-ui');
});
Package.onTest(function(api) {
api.use('tinytest');
api.use('brettle:accounts-deluxe');
// No tests for this particular meta-package. But all of the packages it uses
// have their own tests.
});