theprogrammablemind_4wp 7.5.8-beta.52 → 7.5.8-beta.53

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/config.js +5 -0
package/package.json CHANGED
@@ -63,6 +63,6 @@
63
63
  "json-stable-stringify": "^1.0.1",
64
64
  "node-fetch": "^2.6.1"
65
65
  },
66
- "version": "7.5.8-beta.52",
66
+ "version": "7.5.8-beta.53",
67
67
  "license": "ISC"
68
68
  }
package/src/config.js CHANGED
@@ -968,6 +968,11 @@ class Config {
968
968
  }
969
969
 
970
970
  const sameQueries = helpers.safeEquals(toCanonicalQueries(template.queries || []).map(helpers.updateQueries), toCanonicalQueries(instance.queries || []))
971
+ if (!(instance && sameQueries && sameFragments)) {
972
+ console.log('sameQueries', sameQueries)
973
+ console.log('template.queries', toCanonicalQueries(template.queries || []).map(helpers.updateQueries))
974
+ console.log('instance.queries', toCanonicalQueries(instance.queries || []))
975
+ }
971
976
  return !(instance && sameQueries && sameFragments)
972
977
  }
973
978