Comparing version 1.1.30 to 1.1.31
@@ -27,2 +27,7 @@ "use strict"; | ||
} | ||
task = yield object_compiler_1.ObjectCompiler.compile(task, context); | ||
if (!task) { | ||
this.env.debug(context, this.moduleType, `After compiling task there's nothing to do`); | ||
continue; | ||
} | ||
this.env.debug(context, this.moduleType, `Finding doer '${task.doer}'`); | ||
@@ -29,0 +34,0 @@ const doer = this.env.getDoer(task.doer); |
{ | ||
"name": "low", | ||
"version": "1.1.30", | ||
"version": "1.1.31", | ||
"description": "a templating driven low-code framework for rapid systems development", | ||
@@ -25,3 +25,3 @@ "main": "lib/index.js", | ||
}, | ||
"gitHead": "2bacc2abecf77a8f2f8cb155256a4a008854f498", | ||
"gitHead": "2cfb8fff547834844dde1f7b56d8bb158b7ffc07", | ||
"devDependencies": { | ||
@@ -28,0 +28,0 @@ "@types/jest": "^24.9.0", |
@@ -20,2 +20,8 @@ import { Doer } from './doer'; | ||
task = await ObjectCompiler.compile(task, context); | ||
if (!task) { | ||
this.env.debug(context, this.moduleType, `After compiling task there's nothing to do`); | ||
continue; | ||
} | ||
this.env.debug(context, this.moduleType, `Finding doer '${task.doer}'`); | ||
@@ -22,0 +28,0 @@ const doer = this.env.getDoer(task.doer); |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
488773
4430