forked from afruth/chapp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.js
More file actions
26 lines (24 loc) · 776 Bytes
/
package.js
File metadata and controls
26 lines (24 loc) · 776 Bytes
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
Package.describe({
summary: "A very basic chat package with minimum config necessary to get running",
version: "0.1.6",
git: "https://github.com/afruth/chapp"
});
Package.onUse(function(api) {
api.use([
'session',
'templating',
'ui',
'mrt:moment@2.8.1'
])
api.versionsFrom('METEOR@0.9.0');
api.addFiles('./lib/client/chapp.html','client');
api.addFiles('./lib/common/afruth:chapp-collections.js',['client','server']);
api.addFiles('./lib/server/afruth:chapp-server.js','server');
api.addFiles('./lib/client/afruth:chapp-client.js','client');
api.addFiles('./lib/client/afruth:chapp.css','client');
});
Package.onTest(function(api) {
api.use('tinytest');
api.use('afruth:chapp');
api.addFiles('afruth:chapp-tests.js');
});