forked from sensu/uchiwa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
56 lines (53 loc) · 1.42 KB
/
Gruntfile.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
'use strict';
module.exports = function (grunt) {
grunt.loadNpmTasks("grunt-cache-breaker");
grunt.initConfig({
cachebreaker: {
dev: {
options: {
match: [
'app.js',
'bootstrap.js',
'common.js',
'constants.js',
'controllers.js',
'directives.js',
'factories.js',
'filters.js',
'services.js',
'angular.min.js',
'angular-cookies.min.js',
'angular-resource.min.js',
'angular-route.min.js',
'angular-sanitize.min.js',
'async.js',
'angular-toastr.tpls.min.js',
'ui-bootstrap-tpls.min.js',
'highlight.pack.js',
'moment.min.js',
'angular-moment.min.js',
'angular-moment-picker.min.js',
'angular-gravatar.min.js',
'jsoneditor.min.js',
'ng-jsoneditor.js',
'bootstrap-uchiwa.css',
'font-awesome.min.css',
'angular-toastr.min.css',
'tomorrow.css',
'angular-moment-picker.min.css',
'jsoneditor.min.css',
'uchiwa-default.css',
'ua-parser.min.js'
],
replacement: 'time'
},
files: {
src: ['public/index.html']
}
}
}
});
grunt.registerTask('default', [
'cachebreaker'
]);
};