Skip to content

Releases: afc163/exeq

2.0.0

14 Jan 12:20

Choose a tag to compare

  • support Promise
  • support stdout and stderr data

1.0.0

21 Jul 11:14

Choose a tag to compare

Old:

var q = exeq([ ... ]);
q.on('done', function() { ... });
q.run();

Now:

exeq([ ... ]).on('done', function() { ... });