forked from youiest/youiest-unionize
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.js
88 lines (74 loc) · 1.95 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
// Package.describe({
// name: 'youiest:unionize',
// version: '0.0.4',
// // Brief, one-line summary of the package.
// summary: ' for reactive network triggers with a simple ui',
// // URL to the Git repository containing the source code for this package.
// git: 'https://github.com/youiest/youiest-unionize.git',
// // By default, Meteor will default to using README.md for documentation.
// // To avoid submitting documentation, set this field to null.
// documentation: 'README.md'
// });
// // add grounddb here
// Package.on_use(function (api) {
// api.versionsFrom('1.0.3.1');
// api.use([
// 'matb33:collection-hooks',
// 'coffeescript',
// 'mongo',
// 'accounts-base',
// 'session',
// ], ['client', 'server']);
// api.export(["W","WI","Unionize"], ['client','server']);
// api.add_files([
// 'lib.js'
// ], ['client','server']);
// api.add_files([
// 'client.js'
// ], ['client']);
// api.add_files([
// 'server.js',
// 'rules.js',
// 'methods.js',
// 'publish.js'
// ], ['server']);
// });
// Package.on_test(function (api) {
// // api.versionsFrom('1.0.3.1');
// api.use(
// [
// 'underscore',
// 'ground:db',
// 'aldeed:console-me',
// 'matb33:collection-hooks',
// 'tracker',
// 'tinytest',
// 'test-helpers',
// 'coffeescript',
// 'insecure',
// 'accounts-base',
// 'accounts-password',
// 'underscore',
// 'random',
// 'pedrohenriquerls:reactjs',
// 'mongo',
// 'session'
// ],
// [
// 'client',
// 'server'
// ]);
// api.export(["W","WI","Unionize"], ['client','server']);
// api.add_files([
// 'lib.js'
// ], ['client','server']);
// api.add_files([
// 'client.js'
// ], ['client']);
// api.add_files([
// 'server.js'
// ], ['server']);
// api.add_files([
// 'test.js'
// ], ['client','server']);
// });