mirror of
https://github.com/grafana/grafana.git
synced 2025-07-30 18:02:30 +08:00
11 lines
278 B
JavaScript
11 lines
278 B
JavaScript
module.exports = function(config) {
|
|
return {
|
|
// copy source to temp, we will minify in place for the dist build
|
|
everything_but_less_to_temp: {
|
|
cwd: '<%= srcDir %>',
|
|
expand: true,
|
|
src: ['**/*', '!**/*.less'],
|
|
dest: '<%= tempDir %>'
|
|
}
|
|
};
|
|
}; |