forked from meteor-useraccounts/flow-routing
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.js
53 lines (45 loc) · 1.26 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
45
46
47
48
49
50
51
52
53
// 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: 'mahmost:useraccounts-vue-router',
summary: 'UserAccounts package providing routes configuration capability via vue-router.',
version: '0.1.0',
git: 'https://github.com/mahmost/meteor-useraccounts-vue-router',
});
Npm.depends({
"vue-router": '2.7.0'
});
Package.onUse(function(api) {
api.versionsFrom('[email protected]');
api.use([
'check',
'ecmascript',
'vuejs:[email protected]',
//'kadira:flow-router',
'underscore',
'useraccounts:[email protected]',
'modules'
], ['client', 'server']);
api.imply([
//'kadira:[email protected]',
'useraccounts:[email protected]',
], ['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']);
});