grafana/tasks/options/uglify.js

16 lines
388 B
JavaScript
Raw Normal View History

2013-11-15 07:07:14 +08:00
module.exports = function(config) {
return {
dest: {
expand: true,
2014-02-11 01:05:52 +08:00
src: ['**/*.js', '!config.sample.js', '!app/dashboards/*.js', '!app/dashboards/**/*.js',],
2013-11-15 07:07:14 +08:00
dest: '<%= destDir %>',
cwd: '<%= destDir %>',
options: {
quite: true,
compress: true,
preserveComments: false,
banner: '<%= meta.banner %>'
}
}
};
};