-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.js
74 lines (65 loc) · 1.83 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
Package.describe({
summary: 'Famo.us wrapper for Accounts Templates.',
version: '1.13.1',
name: 'useraccounts:famous-wrapper',
git: 'https://github.com/meteor-useraccounts/famous-wrapper.git',
});
Package.on_use(function(api, where) {
api.versionsFrom('METEOR@1.0');
api.use([
'reactive-dict',
'templating',
], 'client');
api.use([
'check',
'underscore',
'useraccounts:core',
'gadicohen:famous-views',
'aldeed:template-extension'
], ['client', 'server']);
api.imply([
'useraccounts:core@1.13.1',
'gadicohen:famous-views@0.1.22',
'aldeed:template-extension@3.1.1',
], ['client', 'server']);
//api.use('mjnetworks:famous@0.2.2-1', ['client']/*, { weak: true }*/);
api.use('useraccounts:bootstrap@1.13.1', ['client', 'server'], {
weak: true
});
api.use('useraccounts:foundation@1.13.1', ['client', 'server'], {
weak: true
});
api.use('useraccounts:ionic@1.8.1', ['client', 'server'], {
weak: true
});
api.use('useraccounts:ratchet@1.8.1', ['client', 'server'], {
weak: true
});
api.use('useraccounts:semantic-ui@1.13.1', ['client', 'server'], {
weak: true
});
api.use('useraccounts:unstyled@1.13.1', ['client', 'server'], {
weak: true
});
api.add_files([
'lib/at_famous_form.html',
'lib/at_famous_form.js',
'lib/at_famous_oauth.html',
'lib/at_famous_oauth.js',
'lib/at_pwd_form_btn.js',
'lib/full_page_at_famous_form.html',
'lib/full_page_at_famous_form.js',
'lib/default_animations.js',
'lib/famous_wrapper.js',
], ['client']);
api.add_files([
'lib/at_configure_anim.js',
], ['client', 'server']);
});
Package.on_test(function(api) {
api.use([
'useraccounts:core@1.13.1',
]);
api.use(['tinytest', 'test-helpers'], ['client', 'server']);
api.add_files('tests/tests.js', ['client', 'server']);
});