@elyx-code/project-logic-tree 0.0.6718 → 0.0.6719
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.cjs +34 -34
- package/dist/index.js +6 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -170922,6 +170922,8 @@ ${$D}`
|
|
|
170922
170922
|
return this.activeVersion = !0, this.project.subscribeInstance(this), this;
|
|
170923
170923
|
}
|
|
170924
170924
|
unsubscribe() {
|
|
170925
|
+
if (this.id === "3bdd91d6-fa96-403f-af98-532a1110b28a")
|
|
170926
|
+
throw console.log("[PropertyState.unsubscribe] debug"), new Error("[PropertyState.unsubscribe] debug");
|
|
170925
170927
|
return this.project.unsubscribeInstance(this), this;
|
|
170926
170928
|
}
|
|
170927
170929
|
metaSync(i, n = this.project.addChangeSet(
|
|
@@ -176303,6 +176305,8 @@ const b3 = {
|
|
|
176303
176305
|
return (!this.instances[i.id] || this.instances[i.id] !== i) && (this.instances[i.id] = i), this;
|
|
176304
176306
|
}
|
|
176305
176307
|
subscribeDeletedInstance(i) {
|
|
176308
|
+
if (i.id === "3bdd91d6-fa96-403f-af98-532a1110b28a")
|
|
176309
|
+
throw console.log("[ProjectState.subscribeDeletedInstance] Debug"), new Error("[ProjectState.subscribeDeletedInstance] Debug");
|
|
176306
176310
|
return (!this.deletedInstances[i.id] || this.deletedInstances[i.id] !== i) && (this.deletedInstances[i.id] = i), this;
|
|
176307
176311
|
}
|
|
176308
176312
|
subscribeBuiltInInstance(i) {
|
|
@@ -176315,6 +176319,8 @@ const b3 = {
|
|
|
176315
176319
|
return this;
|
|
176316
176320
|
}
|
|
176317
176321
|
unsubscribeInstance(i) {
|
|
176322
|
+
if (i.id === "3bdd91d6-fa96-403f-af98-532a1110b28a")
|
|
176323
|
+
throw console.log("[ProjectState.unsubscribeInstance] debug"), new Error("[ProjectState.unsubscribeInstance] debug");
|
|
176318
176324
|
return delete this.instances[i.id], this;
|
|
176319
176325
|
}
|
|
176320
176326
|
unsubscribeDeletedInstance(i) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elyx-code/project-logic-tree",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6719",
|
|
4
4
|
"author": "Sergio Herrero",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"description": "An installable module which contains the type definitions and ephemeral state management for a projects' logic tree data structure",
|