-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.js
More file actions
64 lines (59 loc) · 4.27 KB
/
package.js
File metadata and controls
64 lines (59 loc) · 4.27 KB
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
61
62
63
64
Package.describe({
summary: "Notebook - Web App and Admin Template (v.1.1.0), fully responsive web application and admin dashboard template, from Flatfull, packaged for Meteor.js."
});
Package.on_use(function (api) {
api.use([
'less',
'jquery'
]);
var path = Npm.require('path');
var asset_path = path.join('notebook-theme');
// CSS
api.add_files(path.join(asset_path, 'css', 'bootstrap.css'), 'client');
api.add_files(path.join(asset_path, 'css', 'animate.css'), 'client');
api.add_files(path.join(asset_path, 'css', 'font.css'), 'client');
api.add_files(path.join(asset_path, 'fonts', 'opensans', 'opensans-bold-webfont.woff'), 'client');
api.add_files(path.join(asset_path, 'fonts', 'opensans', 'opensans-light-webfont.woff'), 'client');
api.add_files(path.join(asset_path, 'fonts', 'opensans', 'opensans-webfont.woff'), 'client');
api.add_files(path.join(asset_path, 'fonts', 'FontAwesome.otf'), 'client');
api.add_files(path.join(asset_path, 'fonts', 'fontawesome-webfont.eot'), 'client');
api.add_files(path.join(asset_path, 'fonts', 'fontawesome-webfont.svg'), 'client');
api.add_files(path.join(asset_path, 'fonts', 'fontawesome-webfont.ttf'), 'client');
api.add_files(path.join(asset_path, 'fonts', 'fontawesome-webfont.woff'), 'client');
api.add_files(path.join(asset_path, 'js', 'fuelux', 'fuelux.css'), 'client');
api.add_files(path.join(asset_path, 'js', 'select2', 'select2.css'), 'client');
api.add_files(path.join(asset_path, 'js', 'select2', 'theme.css'), 'client');
// api.add_files(path.join(asset_path, 'js', 'datepicker', 'datepicker.css'), 'client');
api.add_files(path.join(asset_path, 'less', 'app.arrow.import.less'), 'client');
api.add_files(path.join(asset_path, 'less', 'app.buttons.import.less'), 'client');
api.add_files(path.join(asset_path, 'less', 'app.colors.import.less'), 'client');
api.add_files(path.join(asset_path, 'less', 'app.layout.import.less'), 'client');
api.add_files(path.join(asset_path, 'less', 'app.mixins.import.less'), 'client');
api.add_files(path.join(asset_path, 'less', 'app.nav.import.less'), 'client');
api.add_files(path.join(asset_path, 'less', 'app.plugin.import.less'), 'client');
api.add_files(path.join(asset_path, 'less', 'app.reset.import.less'), 'client');
api.add_files(path.join(asset_path, 'less', 'app.switch.import.less'), 'client');
api.add_files(path.join(asset_path, 'less', 'app.utilities.import.less'), 'client');
api.add_files(path.join(asset_path, 'less', 'app.variables.import.less'), 'client');
api.add_files(path.join(asset_path, 'less', 'app.widgets.import.less'), 'client');
api.add_files(path.join(asset_path, 'less', 'app.custom.import.less'), 'client');
api.add_files(path.join(asset_path, 'less', 'app.less'), 'client');
api.add_files(path.join(asset_path, 'js', 'fullcalendar', 'fullcalendar.css'), 'client');
api.add_files(path.join(asset_path, 'js', 'fullcalendar', 'theme.css'), 'client');
// JS
api.add_files(path.join(asset_path, 'js', 'bootstrap.js'), 'client');
api.add_files(path.join(asset_path, 'js', 'app.js'), 'client');
api.add_files(path.join(asset_path, 'js', 'slimscroll', 'jquery.slimscroll.min.js'), 'client');
api.add_files(path.join(asset_path, 'js', 'app.plugin.js'), 'client');
api.add_files(path.join(asset_path, 'js', 'fuelux', 'fuelux.js'), 'client');
// api.add_files(path.join(asset_path, 'js', 'parsley', 'parsley.min.js'), 'client');
// api.add_files(path.join(asset_path, 'js', 'file-input', 'bootstrap-filestyle.min.js'), 'client');
// api.add_files(path.join(asset_path, 'js', 'datepicker', 'bootstrap-datepicker.js'), 'client');
// api.add_files(path.join(asset_path, 'js', 'libs', 'moment.min.js'), 'client');
// api.add_files(path.join(asset_path, 'js', 'combodate', 'combodate.js'), 'client');
api.add_files(path.join(asset_path, 'js', 'select2', 'select2.min.js'), 'client');
// api.add_files(path.join(asset_path, 'js', 'slider', 'bootstrap-slider.js'), 'client');
// api.add_files(path.join(asset_path, 'js', 'jquery.ui.touch-punch.min.js'), 'client');
// api.add_files(path.join(asset_path, 'js', 'jquery-ui-1.10.3.custom.min.js'), 'client');
api.add_files(path.join(asset_path, 'js', 'fullcalendar', 'fullcalendar.min.js'), 'client');
});