UNPKG

362 BJavaScriptView Raw
1const run = require('./run');
2const utils = require('./utils');
3
4module.exports = function () {
5 console.error(
6 'running tasks with the default export of @elastic/plugin-helpers is deprecated.' +
7 'use `require(\'@elastic/plugin-helpers\').run()` instead'
8 );
9
10 return run.apply(this, arguments);
11};
12
13Object.assign(module.exports, { run: run }, utils);
\No newline at end of file