Skip to content

Commit 2e4e7b4

Browse files
committed
rebuild.
1 parent f485865 commit 2e4e7b4

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "sequential-workflow-model",
33
"description": "Extendable data model of sequential workflow.",
4-
"version": "0.1.2",
4+
"version": "0.1.3",
55
"homepage": "https://nocode-js.com/",
66
"author": {
77
"name": "NoCode JS",
@@ -34,7 +34,7 @@
3434
"url": "https://github.com/nocode-js/sequential-workflow-model.git"
3535
},
3636
"scripts": {
37-
"clean": "rm -rf lib",
37+
"clean": "rm -rf build && rm -rf lib && rm -rf node_modules/.cache/rollup-plugin-typescript2",
3838
"build": "yarn clean && rollup -c",
3939
"prettier": "prettier --check ./src",
4040
"prettier:fix": "prettier --write ./src",

src/definition-walker/definition-walker.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@ export class DefinitionWalker {
3333
this.resolvers = resolvers ? resolvers.concat(defaultResolvers) : defaultResolvers;
3434
}
3535

36+
/**
37+
* Returns children of the step.
38+
*/
3639
public getChildren(step: Step): StepChildren | null {
3740
const count = this.resolvers.length;
3841
for (let i = 0; i < count; i++) {

0 commit comments

Comments
 (0)