-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.js
26 lines (24 loc) · 996 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
Package.describe({
name: 'meteorich:accounts-offline-logout',
version: '0.0.1',
// Brief, one-line summary of the package.
summary: 'Clears client side user information when logging out with no connection (and also destroys server token when connection is re-established)',
// URL to the Git repository containing the source code for this package.
git: '',
// By default, Meteor will default to using README.md for documentation.
// To avoid submitting documentation, set this field to null.
documentation: 'README.md'
});
Package.onUse(function(api) {
api.versionsFrom('[email protected]');
api.use('ecmascript');
api.use('accounts-base');
api.mainModule('accounts-offline-logout-client.js', 'client');
api.mainModule('accounts-offline-logout-server.js', 'server');
});
Package.onTest(function(api) {
api.use('ecmascript');
api.use('tinytest');
api.use('meteorich:accounts-offline-logout');
api.mainModule('accounts-offline-logout-client-tests.js', 'client');
});