forked from meteor-compat/useraccounts-flow-routing
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.js
44 lines (37 loc) · 1.07 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
// Package metadata for Meteor.js web platform (https://www.meteor.com/)
// This file is defined within the Meteor documentation at
//
// http://docs.meteor.com/#/full/packagejs
//
// and it is needed to define a Meteor package
'use strict';
Package.describe({
name: 'useraccounts:flow-routing',
summary: 'UserAccounts package providing routes configuration capability via ostrio:flow-router-extra.',
version: '1.16.0',
git: 'https://github.com/ricaragao/useraccounts-flow-routing',
});
Package.onUse(function(api) {
api.versionsFrom('[email protected]');
api.use('ecmascript');
api.use([
'check',
'ostrio:flow-router-extra',
'underscore',
'useraccounts:core',
'modules'
], ['client', 'server']);
api.use([
'[email protected]_1',
'kadira:[email protected]',
'kadira:[email protected]',
'gwendall:[email protected]'
], ['client', 'server'], { weak: true });
api.addFiles([
'lib/core.js',
], ['client', 'server']);
api.addFiles([
'lib/client/client.js',
'lib/client/templates_helpers/at_input.js',
], ['client']);
});