kibana/x-pack/gulpfile.js

21 lines
652 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 { devTask } = require('./tasks/dev');
const { testTask, testKarmaTask, testKarmaDebugTask } = require('./tasks/test');
2018-04-20 21:13:37 +02:00
// export the tasks that are runnable from the CLI
module.exports = {
build: buildTask,
dev: devTask,
test: testTask,
'test:karma': testKarmaTask,
'test:karma:debug': testKarmaDebugTask,
2018-04-20 21:13:37 +02:00
};