Skip to content

Releases: dsherret/dax

0.19.0

29 Dec 23:29
c93ca78
Compare
Choose a tag to compare

What's Changed

  • feat: $.request - pipeTo and pipeThrough in #55
  • feat: $.request - pipeToPath in #56
  • fix: better handling for if terminal supports progress bars and selecion in #58
  • feat: $.request - automatically derive file name from URL with pipeToPath in #59
  • feat: upgrade internal deno/std to 0.170.0 in #60

Full Changelog: 0.18.1...0.19.0

0.18.1

29 Dec 03:45
3e39a62
Compare
Choose a tag to compare

What's Changed

  • fix: progress bars should not conflict with inherited command pipes by @dsherret in #53

Full Changelog: 0.18.0...0.18.1

0.18.0

29 Dec 02:09
399b790
Compare
Choose a tag to compare

What's Changed

Progress bars and a new prompt/selection API.

Full Changelog: 0.17.0...0.18.0

0.17.0

07 Dec 23:15
760f04d
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.16.0...0.17.0

0.16.0

03 Dec 00:51
834dd51
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 0.15.0...0.16.0

0.15.0

19 Oct 01:11
be49716
Compare
Choose a tag to compare

What's Changed

  • feat: add $.setPrintCommand(true) to mutate print command configuration for a $ #23
  • fix: evaluate real environment on each command execution rather than once on startup #24
  • feat: upgrade deno_std to 0.160.0 #25

Full Changelog: 0.14.1...0.15.0

0.14.1

15 Oct 13:43
Compare
Choose a tag to compare

What's Changed

  • Improved documentation

Full Changelog: 0.14.0...0.14.1

0.14.0

14 Oct 12:50
Compare
Choose a tag to compare
  • feat: ability to set loggers and build $ from another $
  • feat: add $.raw
  • feat: support providing an array of expressions to template literal mapping the array elements to arguments (#20)

0.13.0

30 Sep 19:09
Compare
Choose a tag to compare
  • feat: accept file URL for Command#cwd
  • feat: upgrade deno_std to 0.158.0

Full Changelog: 0.12.0...0.13.0

0.12.0

14 Sep 14:35
Compare
Choose a tag to compare

Adds CommandResult#combined for getting the interleaved stdout and stderr.

For example:

const result = await $`some_command`.stdout("pipe").stderr("pipe");
console.log(result.combined);

Full Changelog: 0.11.0...0.12.0