@milaboratories/pl-middle-layer 1.23.2 → 1.23.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +7 -3
- package/dist/index.mjs.map +1 -1
- package/dist/mutator/project.d.ts +1 -1
- package/dist/mutator/project.d.ts.map +1 -1
- package/package.json +9 -9
- package/src/mutator/project.ts +8 -4
package/dist/index.mjs
CHANGED
|
@@ -825,11 +825,15 @@ class Qt {
|
|
|
825
825
|
get productionRendered() {
|
|
826
826
|
return this.fields.prodCtx !== void 0;
|
|
827
827
|
}
|
|
828
|
-
get
|
|
829
|
-
|
|
828
|
+
get productionHasErrors() {
|
|
829
|
+
var e;
|
|
830
|
+
return ((e = this.fields.prodUiCtx) == null ? void 0 : e.status) === "Error";
|
|
830
831
|
}
|
|
832
|
+
// get productionStale(): boolean {
|
|
833
|
+
// return this.productionRendered && this.productionStaleC() && ;
|
|
834
|
+
// }
|
|
831
835
|
get requireProductionRendering() {
|
|
832
|
-
return !this.productionRendered || this.productionStaleC();
|
|
836
|
+
return !this.productionRendered || this.productionStaleC() || this.productionHasErrors;
|
|
833
837
|
}
|
|
834
838
|
get actualProductionInputs() {
|
|
835
839
|
return this.actualProductionInputsC();
|