theprogrammablemind 7.5.8-beta.49 → 7.5.8-beta.50
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/package.json +1 -1
- package/src/config.js +4 -0
package/package.json
CHANGED
package/src/config.js
CHANGED
@@ -962,6 +962,10 @@ class Config {
|
|
962
962
|
}
|
963
963
|
|
964
964
|
const sameQueries = helpers.safeEquals(toCanonicalQueries(template.queries || []).map(helpers.updateQueries), toCanonicalQueries(instance.queries || []))
|
965
|
+
// greg99
|
966
|
+
console.log("sameQueries", sameQueries)
|
967
|
+
console.log('template.queries', toCanonicalQueries(template.queries || []).map(helpers.updateQueries))
|
968
|
+
console.log('instance.queries', toCanonicalQueries(instance.queries || []))
|
965
969
|
return !(instance && sameQueries && sameFragments)
|
966
970
|
}
|
967
971
|
|