-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.js
More file actions
47 lines (38 loc) · 1000 Bytes
/
Copy pathpackage.js
File metadata and controls
47 lines (38 loc) · 1000 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
Package.describe({
name: "pfafman:materialize-modal",
summary: "Display a modal via Materialize written in coffeescript",
version: "1.0.1",
git: "https://github.com/pfafman/meteor-materialize-modal.git"
});
Package.onUse(function(api, where) {
api.versionsFrom("METEOR@1.2");
api.use([
'underscore',
'templating',
'blaze',
'jquery',
'reactive-var',
], 'client');
api.use([
'softwarerero:accounts-t9n@1.1.0',
'coffeescript'
], ["client", "server"]);
api.addFiles([
'lib/modal.css',
'lib/modal.html',
'lib/MaterializeModal.coffee',
'lib/modal.coffee'
], 'client');
api.addFiles([
'lib/t9n.coffee',
'lib/warning.coffee'
], ['client', 'server']);
if (api.export) {
api.export('MaterializeModal')
}
});
Package.onTest(function(api) {
api.use("pfafman:materialize-modal", 'client');
api.use(['tinytest', 'test-helpers', 'coffeescript'], 'client');
api.add_files('tests/modal_tests.coffee', 'client');
});