smol-workflow-engine 0.3.0

Rust implementation of the smol-workflows engine.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
export const meta = {
  name: 'stack-error',
  description: 'Exercise stack traces for module evaluation errors',
};

function fail() {
  throw new Error('boom from module');
}

fail();

export default 'unreachable';