Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
* main();
*
* @name execa
* @param {string} file executable to run
* @param {Array} args arguments / flags to be passed to `file`
* @param {object} options optional options, passed to `child_process`'s methods
* @public
*/
function execa(file, args, options) {
// ! this is just a tweak because the docs generation (parse-comments bugs)...
return execaOrig(file, args, options);
}
// ! this is just a tweak because the docs generation (parse-comments bugs)...
execaOrig.execa = execa;
// ! this is just a tweak because the docs generation (parse-comments bugs)...
export default execaOrig;