grafana/tasks/options/clean.js
2017-09-18 09:02:45 +02:00

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',
],
};
};