kibana/x-pack/gulpfile.js

17 lines
507 B
JavaScript
Raw Normal View History

2018-04-20 21:13:37 +02:00
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License;
* you may not use this file except in compliance with the Elastic License.
*/
require('../src/setup_node_env');
2018-04-20 21:13:37 +02:00
const { buildTask } = require('./tasks/build');
const { downloadChromium } = require('./tasks/download_chromium');
2018-04-20 21:13:37 +02:00
// export the tasks that are runnable from the CLI
module.exports = {
build: buildTask,
downloadChromium,
2018-04-20 21:13:37 +02:00
};