Skip to content

Releases: fkrauthan/nss-run

v0.4.0

04 Feb 07:38
Compare
Choose a tag to compare

Warning! this version is only partial compatible to v0.4.0!

This version removed bluebird to provide Promises (breaking change). And also now requires @babel/register instead of babel-register when using nss-runfile.babel.js

It also adds support for .mjs and .cjs extensions to write your nss-runfile in.

Changelog

  • Updated dependencies
  • Switched project from yarn to pnpm
  • Removed bluebird as dependency
  • nss-runfile.babel.js now requires @babel/register
  • Added support for nss-runfile.mjs and nss-runfile.cjs

v0.3.2

18 Jun 06:41
b3ed927
Compare
Choose a tag to compare

Mainly updates some dependencies

Changelog

  • Updated dependencies

v0.3.1

25 Jun 18:38
Compare
Choose a tag to compare

Mainly updates some dependencies and fixed a small bug

Changelog

  • Updated dependencies
  • Fixed a bug where the cli was never returning an error code even if execution failed

v0.3.0

29 Mar 03:31
Compare
Choose a tag to compare

Mainly updates some dependencies, added jsdoc documentation to all relevant methods and added a brand new feature to allow answering questions for interactive programs.

Changelog

  • Updated dependencies
  • Exposed chalk for color support within tasks
  • Added jsdoc to all nss-runfile relevant functions
  • Added a new subsystem for the run method to automatic answer interactive programs

v0.2.1

27 Feb 18:21
Compare
Choose a tag to compare

This release does not contain any code changes.

Changelog

  • Fixed the NPM version

v0.2.0

25 Feb 23:23
Compare
Choose a tag to compare

Warning! this version is not compatible to v0.1.0!

This version includes a full rewrite of the project to make everything async by nature. This should make creating tasks a lot easier as you not longer need to count on having a sync version of your favorite library available.

Changelog

  • Changed project direction and made everything async
  • Added promise as the way to go
  • Updated dependencies
  • Extended taskGroup to allow task execution in sequence and parallel (following the
    gulp syntax)