mirror of
https://github.com/grafana/grafana.git
synced 2025-01-27 16:57:14 -06:00
12 lines
230 B
JavaScript
12 lines
230 B
JavaScript
|
module.exports = function(config) {
|
||
|
'use strict';
|
||
|
|
||
|
return {
|
||
|
release: ['<%= destDir %>', '<%= tempDir %>', '<%= genDir %>'],
|
||
|
build: ['<%= srcDir %>/build'],
|
||
|
temp: ['<%= tempDir %>'],
|
||
|
packaging: [
|
||
|
],
|
||
|
};
|
||
|
};
|