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 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" ,
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" ,
Original file line number Diff line number Diff 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 ++ ) {
You can’t perform that action at this time.
0 commit comments