forked from gwendall/meteor-simple-schema-i18n
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.js
45 lines (40 loc) · 986 Bytes
/
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
Package.describe({
name: "gwendall:simple-schema-i18n",
summary: "Internationalization for SimpleSchema",
version: "0.1.9",
git: "https://github.com/gwendall/meteor-simple-schema-i18n.git"
});
var packages = [
"aldeed:[email protected]",
"tap:[email protected]",
];
Package.onUse(function (api, where) {
api.use(packages);
api.imply(packages);
api.addFiles([
"package-tap.i18n",
"i18n/ar.i18n.json",
"i18n/bg.i18n.json",
"i18n/de.i18n.json",
"i18n/en.i18n.json",
"i18n/es.i18n.json",
"i18n/et.i18n.json",
"i18n/fr.i18n.json",
"i18n/he.i18n.json",
"i18n/id.i18n.json",
"i18n/it.i18n.json",
"i18n/nl.i18n.json",
"i18n/pt-BR.i18n.json",
"i18n/ru.i18n.json",
"i18n/sk.i18n.json",
"i18n/sv.i18n.json",
"i18n/tr.i18n.json",
"i18n/uk.i18n.json",
"i18n/zh-CN.i18n.json",
"i18n/zh-HK.i18n.json",
"i18n/zh-TW.i18n.json",
"shared/lib.js"
]);
});