-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.js
More file actions
27 lines (25 loc) · 905 Bytes
/
Copy pathpackage.js
File metadata and controls
27 lines (25 loc) · 905 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
27
Package.describe({
summary: "Fork of afruth:chapp - A very basic chat package with minimum config necessary to get running - Adds more stylability to chat messages, and allows for cusomizable history logs",
version: "0.1.7",
name: "afruth:chapp",
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');
});