Comparing version 1.1.33 to 1.1.34
@@ -37,2 +37,6 @@ "use strict"; | ||
yield doer.execute(context, task); | ||
context.lastTask = { | ||
task, | ||
output: context.data[task.name] || null | ||
}; | ||
if (multiDoerTask.branch) { | ||
@@ -56,2 +60,3 @@ this.env.debug(context, this.moduleType, 'Task executed with BranchConfig, compiling it'); | ||
} | ||
delete context.lastTask; | ||
} | ||
@@ -58,0 +63,0 @@ }); |
@@ -41,5 +41,2 @@ "use strict"; | ||
} | ||
if (ObjectCompiler.isObject(resolvedProperty) && '__doNotCompile' in property) { | ||
return resolvedProperty; | ||
} | ||
if (ObjectCompiler.isTemplate(resolvedProperty)) { | ||
@@ -46,0 +43,0 @@ const renderer = context.env.getRenderer(resolvedProperty.__renderer || 'Renderer'); |
{ | ||
"name": "low", | ||
"version": "1.1.33", | ||
"version": "1.1.34", | ||
"description": "a templating driven low-code framework for rapid systems development", | ||
@@ -25,3 +25,3 @@ "main": "lib/index.js", | ||
}, | ||
"gitHead": "3563cf9a7b72af607522fc2c3bcd114ab923908a", | ||
"gitHead": "0851d17718420946abb98f16cf5e6e1600b25504", | ||
"devDependencies": { | ||
@@ -28,0 +28,0 @@ "@types/jest": "^24.9.0", |
@@ -33,2 +33,7 @@ import { Doer } from './doer'; | ||
context.lastTask = { | ||
task, | ||
output: context.data[task.name] || null | ||
}; | ||
if (multiDoerTask.branch) { | ||
@@ -54,2 +59,4 @@ this.env.debug(context, this.moduleType, 'Task executed with BranchConfig, compiling it'); | ||
} | ||
delete context.lastTask; | ||
} | ||
@@ -56,0 +63,0 @@ } |
@@ -37,6 +37,2 @@ | ||
if (ObjectCompiler.isObject(resolvedProperty) && '__doNotCompile' in property) { | ||
return resolvedProperty; | ||
} | ||
if (ObjectCompiler.isTemplate(resolvedProperty)) { | ||
@@ -43,0 +39,0 @@ const renderer = context.env.getRenderer(resolvedProperty.__renderer || 'Renderer'); |
Sorry, the diff of this file is not supported yet
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
489171
4446