@domql/state 2.5.28 → 2.5.29

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.
@@ -93,7 +93,6 @@ const hoistStateUpdate = (state, obj, options) => {
93
93
  const targetParent = findGrandParentState || parent.state;
94
94
  if (options.replace)
95
95
  (0, import_utils.overwriteDeep)(targetParent, changesValue || value);
96
- console.log(changesValue);
97
96
  targetParent.update(changesValue, {
98
97
  execStateFunction: false,
99
98
  isHoisted: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@domql/state",
3
- "version": "2.5.28",
3
+ "version": "2.5.29",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "module": "dist/esm/index.js",
@@ -31,5 +31,5 @@
31
31
  "@domql/report": "latest",
32
32
  "@domql/utils": "latest"
33
33
  },
34
- "gitHead": "aaf2a65754d4611a18442f9da3b741cb70faf7d1"
34
+ "gitHead": "df470e5a96cda567c9d99cc98337eac0136d0890"
35
35
  }
package/updateState.js CHANGED
@@ -81,7 +81,6 @@ const hoistStateUpdate = (state, obj, options) => {
81
81
  const changesValue = createChangesByKey(stateKey, passedValue)
82
82
  const targetParent = findGrandParentState || parent.state
83
83
  if (options.replace) overwriteDeep(targetParent, changesValue || value) // check with createChangesByKey
84
- console.log(changesValue)
85
84
  targetParent.update(changesValue, {
86
85
  execStateFunction: false,
87
86
  isHoisted: true,