forked from erobit/meteor-accounts-ui-bootstrap-dropdown
-
Notifications
You must be signed in to change notification settings - Fork 108
/
package.js
84 lines (75 loc) · 2.02 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
75
76
77
78
79
80
81
82
83
84
Package.describe({
name: 'ian:accounts-ui-bootstrap-3',
summary: 'Bootstrap-styled accounts-ui with multi-language support.',
version: '1.2.89',
git: "https://github.com/ianmartorell/meteor-accounts-ui-bootstrap-3"
})
Package.on_use(function (api) {
api.use(['[email protected]',
'[email protected] || 2.0.0',
'anti:[email protected]'
],'client')
api.imply('accounts-base', ['client', 'server']);
// Allows the user of this package to choose their own Bootstrap
// implementation.
api.use(['twbs:[email protected]',
'nemo64:[email protected]_1'],
'client', {weak: true});
// Allows us to call Accounts.oauth.serviceNames, if there are any OAuth
// services.
api.use('[email protected]', {weak: true});
// Allows us to directly test if accounts-password (which doesn't use
// Accounts.oauth.registerService) exists.
api.use('[email protected]', {weak: true});
api.add_files([
'accounts_ui.js',
// translations
'i18n/en.i18n.js',
'i18n/es.i18n.js',
'i18n/ca.i18n.js',
'i18n/fr.i18n.js',
'i18n/de.i18n.js',
'i18n/it.i18n.js',
'i18n/pt-PT.i18n.js',
'i18n/pt-BR.i18n.js',
'i18n/pt.i18n.js',
'i18n/ru.i18n.js',
'i18n/el.i18n.js',
'i18n/ko.i18n.js',
'i18n/ar.i18n.js',
'i18n/pl.i18n.js',
'i18n/zh-CN.i18n.js',
'i18n/zh-TW.i18n.js',
'i18n/zh.i18n.js',
'i18n/nl.i18n.js',
'i18n/ja.i18n.js',
'i18n/he.i18n.js',
'i18n/sv.i18n.js',
'i18n/uk.i18n.js',
'i18n/fi.i18n.js',
'i18n/vi.i18n.js',
'i18n/sk.i18n.js',
'i18n/be.i18n.js',
'i18n/fa.i18n.js',
'i18n/sr-Cyrl.i18n.js',
'i18n/sr-Latn.i18n.js',
'i18n/sr.i18n.js',
'i18n/hu.i18n.js',
'i18n.js',
'login_buttons.html',
'login_buttons_single.html',
'login_buttons_dropdown.html',
'login_buttons_dialogs.html',
'login_buttons_session.js',
'login_buttons.js',
'login_buttons_single.js',
'login_buttons_dropdown.js',
'login_buttons_dialogs.js',
'accounts_ui.styl'
], 'client')
api.export('accountsUIBootstrap3', 'client')
})