mirror of
https://github.com/grafana/grafana.git
synced 2025-08-01 06:41:49 +08:00
17 lines
336 B
JavaScript
17 lines
336 B
JavaScript
module.exports = function(config) {
|
|
return {
|
|
dest: {
|
|
expand: true,
|
|
src: ['**/*.js', '!dashboards/*.js'],
|
|
dest: '<%= destDir %>',
|
|
cwd: '<%= destDir %>',
|
|
options: {
|
|
quite: true,
|
|
compress: true,
|
|
preserveComments: false,
|
|
banner: '<%= meta.banner %>'
|
|
}
|
|
}
|
|
};
|
|
};
|