smol-workflow-engine 0.3.1

Rust implementation of the smol-workflows engine.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
export const meta = {
  name: "parent-workflow",
  description: "Parent workflow fixture",
  phases: [{ title: "Parent" }],
};

phase("Parent");

const child = await workflow({ scriptPath: "./child.workflow.js" }, { value: args.value });

export default {
  parentArg: args.value,
  child,
};