forked from softwarerero/meteor-accounts-t9n
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.js
69 lines (63 loc) · 1.72 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
Package.describe({
summary: "Translations for the meteor account's error messages.",
version: "1.0.0",
name: "softwarerero:accounts-t9n",
git: "https://github.com/softwarerero/meteor-accounts-t9n.git",
});
Package.on_use(function (api, where) {
if (api.versionsFrom)
api.versionsFrom("[email protected]");
api.add_files([
't9n.coffee',
't9n/ar.coffee',
't9n/zh-cn.coffee',
't9n/cs.coffee',
't9n/da.coffee',
't9n/de.coffee',
't9n/el.coffee',
't9n/en.coffee',
't9n/es.coffee',
't9n/es_ES.coffee',
't9n/fa.coffee',
't9n/fr.coffee',
't9n/he.coffee',
't9n/it.coffee',
't9n/pl.coffee',
't9n/pt.coffee',
't9n/ru.coffee',
't9n/sl.coffee',
't9n/sv.coffee',
't9n/uk.coffee',
't9n/vi.coffee',
't9n/no_NB.coffee',
], ['client', 'server']);
api.use(['coffeescript', 'deps'], ['client', 'server']);
api.export('T9n', ['client', 'server']);
});
Package.on_test(function (api) {
api.add_files([
't9n.coffee',
't9n/ar.coffee',
't9n/zh-cn.coffee',
't9n/cs.coffee',
't9n/da.coffee',
't9n/de.coffee',
't9n/el.coffee',
't9n/en.coffee',
't9n/es.coffee',
't9n/es_ES.coffee',
't9n/fa.coffee',
't9n/fr.coffee',
't9n/he.coffee',
't9n/it.coffee',
't9n/pl.coffee',
't9n/pt.coffee',
't9n/ru.coffee',
't9n/sl.coffee',
't9n/sv.coffee',
't9n/uk.coffee',
't9n/vi.coffee',
't9n/no_NB.coffee',
], ['client', 'server']);
api.use(['coffeescript', 'deps'], ['client', 'server']);
});