grafana/tasks/options/htmlmin.js
2015-09-10 12:42:24 +02:00

19 lines
349 B
JavaScript

module.exports = function(config) {
return {
build: {
options:{
removeComments: true,
collapseWhitespace: true
},
expand: true,
cwd: '<%= genDir %>',
src: [
//'index.html',
'app/panels/**/*.html',
'app/partials/**/*.html'
],
dest: '<%= genDir %>'
}
};
};