COMBINE-lab / simpleaf

A rust framework to make using alevin-fry even simpler
BSD 3-Clause "New" or "Revised" License
45 stars 3 forks source link

refactor: Workflow: change Step to integer, and put external command argument into vec #61

Closed DongzeHE closed 1 year ago

DongzeHE commented 1 year ago

Step's value changed from quoted integer to integer

Previously, the Step field of the command record fields is expected to be a quoted integer. Now, this is changed to integer without quote.

External command arguments are provided as a vector in order

Previously, we required the arguments of any external command record to be provided as a order,value pair. Now, they are required to be provided as a vector, as vector naturally are ordered.