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