File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " sequential-workflow-model" ,
3
3
"description" : " Extendable data model of sequential workflow." ,
4
- "version" : " 0.1.2 " ,
4
+ "version" : " 0.1.3 " ,
5
5
"homepage" : " https://nocode-js.com/" ,
6
6
"author" : {
7
7
"name" : " NoCode JS" ,
34
34
"url" : " https://github.com/nocode-js/sequential-workflow-model.git"
35
35
},
36
36
"scripts" : {
37
- "clean" : " rm -rf lib" ,
37
+ "clean" : " rm -rf build && rm -rf lib && rm -rf node_modules/.cache/rollup-plugin-typescript2 " ,
38
38
"build" : " yarn clean && rollup -c" ,
39
39
"prettier" : " prettier --check ./src" ,
40
40
"prettier:fix" : " prettier --write ./src" ,
Original file line number Diff line number Diff line change @@ -33,6 +33,9 @@ export class DefinitionWalker {
33
33
this . resolvers = resolvers ? resolvers . concat ( defaultResolvers ) : defaultResolvers ;
34
34
}
35
35
36
+ /**
37
+ * Returns children of the step.
38
+ */
36
39
public getChildren ( step : Step ) : StepChildren | null {
37
40
const count = this . resolvers . length ;
38
41
for ( let i = 0 ; i < count ; i ++ ) {
You can’t perform that action at this time.
0 commit comments