-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.js
60 lines (44 loc) · 1.9 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
Package.describe({
summary: "HIPAA audit log for ClinicalFramework.",
version: "2.3.6",
git: "http://github.com/clinical-meteor/clinical-hipaa-audit-log.git",
name: "clinical:hipaa-audit-log"
});
Package.on_use(function (api) {
api.versionsFrom('1.1.0.2');
api.use('meteor-platform');
api.addFiles('lib/HipaaLogger.js', ["client", "server"]);
api.addFiles('lib/HipaaAuditLog.js', ["client", "server"]);
api.addFiles('hipaa.shared.js', ["client", "server"]);
api.addFiles('hipaa.server.js', "server");
api.addFiles('components/hipaaRibbon/hipaaRibbon.html', "client");
api.addFiles('components/hipaaRibbon/hipaaRibbon.js', "client");
api.addFiles('components/hipaaRibbon/hipaaRibbon.less', "client");
api.addFiles('components/hipaaAuditLog/hipaaAuditLog.html', "client");
api.addFiles('components/hipaaAuditLog/hipaaAuditLog.js', "client");
api.addFiles('components/hipaaAuditLog/hipaaAuditLog.less', "client");
api.addFiles('components/hipaaLogPage/hipaaLogPage.html', "client");
api.addFiles('components/hipaaLogPage/hipaaLogPage.js', "client");
api.addFiles('components/hipaaLogPage/hipaaLogPage.less', "client");
api.export('hipaaLog');
api.export('hipaaRibbon');
api.export('Hipaa');
api.export('HipaaLogger');
api.export('HipaaAuditLog');
});
Package.onTest(function (api) {
api.use('tinytest');
api.use('clinical:hipaa-audit-log');
api.use('clinical:verification');
api.addFiles('tests/tinytest/audit-log-tests.js');
});