forked from aslagle/reactive-table
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.js
54 lines (48 loc) · 2.16 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
Package.describe({
summary: "A reactive table designed for Meteor",
version: "0.5.6",
name: "aslagle:reactive-table",
git: "https://github.com/ecohealthalliance/reactive-table.git"
});
Package.on_use(function (api) {
api.versionsFrom("[email protected]");
api.use('templating', 'client');
api.use('jquery', 'client');
api.use('underscore', 'client');
api.use('[email protected]', 'client');
api.use("anti:[email protected]", 'client');
api.add_files('lib/reactive_table.html', 'client');
api.add_files('lib/reactive_table_i18n.js', 'client');
api.add_files('lib/reactive_table.js', 'client');
api.add_files('lib/reactive_table.css', 'client');
});
Package.on_test(function (api) {
api.use('templating', 'client');
api.use('jquery', 'client');
api.use('underscore', 'client');
api.use('[email protected]', 'client');
api.use("anti:[email protected]", 'client');
api.add_files('lib/reactive_table.html', 'client');
api.add_files('lib/reactive_table_i18n.js', 'client');
api.add_files('lib/reactive_table.js', 'client');
api.add_files('lib/reactive_table.css', 'client');
api.use(['tinytest', 'test-helpers'], 'client');
api.add_files('test/helpers.js', 'client');
api.add_files('test/test_collection_argument.js', 'client');
api.add_files('test/test_settings.js', 'client');
api.add_files('test/test_fields_tmpl.html', 'client');
api.add_files('test/test_fields.js', 'client');
api.add_files('test/test_reactivity.js', 'client');
api.add_files('test/test_sorting.js', 'client');
api.add_files('test/test_filtering.js', 'client');
api.add_files('test/test_pagination.js', 'client');
api.add_files('test/test_i18n.js', 'client');
api.add_files('test/test_events_tmpl.html', 'client');
api.add_files('test/test_events.js', 'client');
api.add_files('test/test_column_toggles.js', 'client');
api.add_files('test/test_multiple_tables.js', 'client');
api.add_files('test/test_template.html', 'client');
api.add_files('test/test_template.js', 'client');
api.use("dburles:[email protected]", "client");
api.add_files("test/test_compatibility.js", "client");
});