-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.js
executable file
·37 lines (32 loc) · 956 Bytes
/
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
Package.describe({
name: 'lc3t35:datatables-bootstrap3',
summary: "Bootstrap'ed DataTables for meteor",
version: '1.10.11', // changed version to match datatables
git: 'https://github.com/lc3t35/meteor-datatables-bootstrap3'
});
Package.on_use(function (api) {
api.use('[email protected]', 'client');
api.add_files([
'lib/jquery.dataTables.min.js',
'lib/dataTables.bootstrap.min.js',
'lib/dataTables.bootstrap.min.css'],
'client');
api.addAssets([
'lib/images/favicon.ico',
'lib/images/sort_asc.png',
'lib/images/sort_asc_disabled.png',
'lib/images/sort_both.png',
'lib/images/sort_desc.png',
'lib/images/sort_desc_disabled.png'],
'client');
});
Package.on_test( function(api) {
api.use([
'jquery',
'ian:bootstrap-3',
'lc3t35:datatables-bootstrap3',
'test-helpers',
'tinytest'
]);
api.add_files("tests/test.js");
});