theprogrammablemind 7.5.8-beta.87 → 7.5.8-beta.89
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/client.js +1 -1
- package/package.json +1 -1
- package/src/config.js +5 -5
package/client.js
CHANGED
@@ -434,7 +434,7 @@ const processContextsB = ({ config, hierarchy, semantics, generators, json, isTe
|
|
434
434
|
if (isInstance) {
|
435
435
|
console.log('error', e.error)
|
436
436
|
}
|
437
|
-
contextPrime = semantics.apply(args, { marker: 'error', context, reason: e.reason, error: e.stack })
|
437
|
+
contextPrime = semantics.apply(args, { marker: 'error', context, text: e ? e.toString() : 'not available', reason: e.reason, error: e.stack })
|
438
438
|
}
|
439
439
|
}
|
440
440
|
if (contextPrime.controlRemove) {
|
package/package.json
CHANGED
package/src/config.js
CHANGED
@@ -1041,13 +1041,13 @@ class Config {
|
|
1041
1041
|
}
|
1042
1042
|
|
1043
1043
|
const sameQueries = helpers.safeEquals(toCanonicalQueries(template.queries || []).map(helpers.updateQueries), toCanonicalQueries(instance.queries || []))
|
1044
|
-
if (!sameQueries) {
|
1045
|
-
debugger
|
1046
|
-
debugger
|
1047
|
-
}
|
1048
1044
|
|
1049
|
-
const debug =
|
1045
|
+
const debug = false
|
1050
1046
|
if (debug) {
|
1047
|
+
if (!sameQueries) {
|
1048
|
+
debugger
|
1049
|
+
debugger
|
1050
|
+
}
|
1051
1051
|
console.log("instance", instance)
|
1052
1052
|
console.log("sameQueries", sameQueries)
|
1053
1053
|
console.log("sameFragments", sameFragments)
|