kibana/tasks/config/availabletasks.js

25 lines
675 B
JavaScript
Raw Normal View History

/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0 and the Server Side Public License, v 1; you may not use this file except
* in compliance with, at your election, the Elastic License 2.0 or the Server
* Side Public License, v 1.
*/
2020-05-22 10:08:13 +02:00
module.exports = function (grunt) {
const config = {
availabletasks: {
tasks: {
options: {
filter: 'exclude',
2019-12-14 07:55:01 +01:00
tasks: ['availabletasks', 'tasks'],
},
},
},
};
grunt.registerTask('tasks', ['availabletasks']);
grunt.config.merge(config);
return config;
};