kibana/x-pack/tasks/dev.js
2018-09-13 15:02:18 -07:00

12 lines
461 B
JavaScript

/*
* 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.
*/
import pluginHelpers from '@kbn/plugin-helpers';
import getFlags from './helpers/get_flags';
export default (gulp) => {
gulp.task('dev', ['prepare:dev'], () => pluginHelpers.run('start', { flags: getFlags() }));
};