Skip to content

Releases: iopipe/turtle

0.0.1 - Alpha 2

16 Jan 04:10
Compare
Choose a tag to compare
0.0.1 - Alpha 2 Pre-release
Pre-release

The project is moving quickly and a lot of bugs have been fixed. Documentation has been largely rewritten to reflect all of the changes that are still happening.

Most notably, pipescript syntax has changed. No longer is an "input" variable expected by pipescripts, but instead, scripts are expected to provide a function called "module.exports". This provides a certain amount of compatibility with NPM and CommonJS, while being a far cleaner abstraction (pipescript functions are actual functions).

The new syntax looks like:

module.exports = function(input) { return input }

Alpha 1

12 Jan 18:06
Compare
Choose a tag to compare
Alpha 1 Pre-release
Pre-release

First alpha release. This includes most basic functionality, minus publish/subscribe. Scripts do not yet have an ability to indicate their from/to types.

Users may import pipescripts and run workflows.