-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.js
105 lines (85 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
Package.describe({
name: 'youiest:follow',
version: '0.0.4',
summary: ' for reactive network triggers with a simple ui',
git: 'https://github.com/youiest/youiest-unionize.git',
documentation: 'README.md'
});
Package.on_use(function (api) {
api.versionsFrom('1.0.3.1');
api.use([
'templating',
'deps',
'tracker',
'session',
'reactjs:react',
], ['client', 'server']);
// like Document W will be an extended coll..
api.export('Follow', ['client','server']);
api.add_files([
'lib.js'
], ['client','server']);
api.add_files([
'templateFollow.html',
'templateFollow.jsx',
'client.js'
], ['client']);
api.add_files([
'server.js'
], ['server']);
// api.add_files([
// 'lib.coffee','ground:db'
// ], ['client','server']);
// api.add_files([
// 'client.coffee'
// ], 'client');
// api.add_files([
// 'server.coffee', 'publish.coffee'
// ], 'server');
});
Package.on_test(function (api) {
// api.versionsFrom('1.0.3.1');
api.use(
[
'templating',
'deps',
'tracker',
'session',
'reactjs:react',
'underscore',
'ground:db',
'aldeed:console-me',
'matb33:collection-hooks',
'tracker',
'tinytest',
'test-helpers',
'coffeescript',
'insecure',
'accounts-base',
'accounts-password',
'underscore',
'random',
'reactjs:react',
'mongo',
'youiest:unionize'
],
[
'client',
'server'
]);
api.export('Follow', ['client','server']);
api.add_files([
'lib.js'
], ['client','server']);
api.add_files([
'templateFollow.html',
'templateFollow.jsx',
'client.js'
], ['client']);
api.add_files([
'server.js'
], ['server']);
api.add_files([
'test.js'
], ['client','server']);
});