mirror of
https://github.com/grafana/grafana.git
synced 2025-01-27 16:57:14 -06:00
18 lines
483 B
JavaScript
18 lines
483 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/tether',
|
|
'<%= tempDir %>/public/vendor/npm/tether-drop',
|
|
'<%= tempDir %>/public/**/*.map',
|
|
'<%= tempDir %>/public/**/*.ts',
|
|
],
|
|
};
|
|
};
|