grafana/tasks/options/htmlmin.js

19 lines
349 B
JavaScript
Raw Normal View History

2013-11-14 17:07:14 -06:00
module.exports = function(config) {
return {
build: {
options:{
removeComments: true,
collapseWhitespace: true
},
expand: true,
2015-09-10 05:42:24 -05:00
cwd: '<%= genDir %>',
2013-11-14 17:07:14 -06:00
src: [
//'index.html',
2013-11-14 17:07:14 -06:00
'app/panels/**/*.html',
'app/partials/**/*.html'
],
2015-09-10 05:42:24 -05:00
dest: '<%= genDir %>'
2013-11-14 17:07:14 -06:00
}
};
2015-09-10 05:42:24 -05:00
};