Releases: fkrauthan/nss-run
v0.4.0
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
topnpm
- Removed
bluebird
as dependency nss-runfile.babel.js
now requires@babel/register
- Added support for
nss-runfile.mjs
andnss-runfile.cjs
v0.3.2
v0.3.1
v0.3.0
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
v0.2.0
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)