forked from patrickbolle/meteor-favorites
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.js
52 lines (42 loc) · 945 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
46
47
48
49
50
51
52
Package.describe({
name: "aessig:meteor-favorites",
summary: "Adds favoriting/liking functionality to any collection",
version: "0.0.4",
git: "http://github.com/aessig/meteor-favorites.git",
});
Package.onUse(function (api) {
var both = ["client", "server"];
api.versionsFrom("1.0");
api.use(
[
"templating",
"aldeed:[email protected]",
"aldeed:[email protected]",
],
both);
api.use("tap:[email protected]", both);
api.imply("tap:i18n");
api.add_files([
"i18n/en.i18n.json",
"i18n/fr.i18n.json",
], both);
api.addFiles(
[
"lib/both/schemas.js",
"lib/both/collections.js",
], both);
api.addFiles(
[
"lib/client/templates.html",
"lib/client/templates.js",
"lib/client/helpers.js",
],
"client");
api.addFiles(
[
"lib/server/allow.js",
"lib/server/publish.js",
],
"server");
});