Skip to content

Releases: sindresorhus/execa

v8.0.1

19 Aug 15:47
Compare
Choose a tag to compare

Fixes

v8.0.0...v8.0.1

v8.0.0

19 Aug 00:29
Compare
Choose a tag to compare

Breaking

  • Require Node.js 16.17.0 and later (#569)

v7.2.0...v8.0.0

v7.2.0

27 Jul 00:22
Compare
Choose a tag to compare

v7.1.1...v7.2.0

v7.1.1

14 Mar 19:45
Compare
Choose a tag to compare

Features

Bug fixes

v7.1.0

11 Mar 23:57
Compare
Choose a tag to compare

Features

import {$} from 'execa';

const branch = await $`git branch --show-current`;
await $`dep deploy --branch=${branch}`;
// Similar to `echo unicorns > stdout.txt` in Bash
await execa('echo', ['unicorns']).pipeStdout('stdout.txt');

// Similar to `echo unicorns 2> stdout.txt` in Bash
await execa('echo', ['unicorns']).pipeStderr('stderr.txt');

// Similar to `echo unicorns &> stdout.txt` in Bash
await execa('echo', ['unicorns'], {all: true}).pipeAll('all.txt');
// Similar to `cat < stdin.txt` in Bash
const {stdout} = await execa('cat', {inputFile: 'stdin.txt'});
console.log(stdout);
//=> 'unicorns'
  • Add verbose option to print each command on stderr before executing it. This can also be enabled by setting the NODE_DEBUG=execa environment variable in the current process.
> node file.js
unicorns
rainbows

> NODE_DEBUG=execa node file.js
[16:50:03.305] echo unicorns
unicorns
[16:50:03.308] echo rainbows
rainbows

v7.0.0

11 Feb 17:18
Compare
Choose a tag to compare

Breaking

Fixes

  • Emit end event on streams when process fails (#518) 30c7a7a
  • Fix incorrect execaNode signature in index.d.ts (#506) 1f7677c

v6.1.0...v7.0.0

v6.1.0

13 Feb 10:41
Compare
Choose a tag to compare

v6.0.0...v6.1.0

v6.0.0

17 Nov 11:10
Compare
Choose a tag to compare

Breaking

  • Require Node.js 12.20 (#478) 7707880
  • This package is now pure ESM. Please read this.
  • Moved from a default export to named exports.
    • require('execa') β†’ import {execa} from 'execa'
    • require('execa').sync β†’ import {execaSync} from 'execa'
    • require('execa').command β†’ import {execaCommand} from 'execa'
    • require('execa').commandSync β†’ import {execaCommandSync} from 'execa'
    • require('execa').node β†’ import {execaNode} from 'execa'

v5.1.1...v6.0.0

v5.1.1

04 Jun 16:38
Compare
Choose a tag to compare
  • Fix error message when user passes a single array argument (#468) 2b9c0e1

v5.1.0...v5.1.1

v5.1.0

02 Jun 17:37
Compare
Choose a tag to compare

v5.0.1...v5.1.0