mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
17 lines
446 B
JavaScript
17 lines
446 B
JavaScript
module.exports = function(config) {
|
|
'use strict';
|
|
|
|
return {
|
|
release: ['<%= destDir %>', '<%= tempDir %>', '<%= genDir %>'],
|
|
gen: ['<%= genDir %>'],
|
|
temp: ['<%= tempDir %>'],
|
|
css: ['<%= genDir %>/css'],
|
|
packaging: [
|
|
'<%= tempDir %>/public/vendor/npm/rxjs',
|
|
'<%= tempDir %>/public/vendor/npm/teather',
|
|
'<%= tempDir %>/public/vendor/npm/teather-drop',
|
|
'<%= tempDir %>/public/**/*.map',
|
|
],
|
|
};
|
|
};
|