theprogrammablemind_4wp 9.5.1-beta.3 → 9.5.1-beta.4

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 +4 -1
package/package.json CHANGED
@@ -71,6 +71,6 @@
71
71
  "sort-json": "^2.0.0",
72
72
  "uuid": "^8.3.2"
73
73
  },
74
- "version": "9.5.1-beta.3",
74
+ "version": "9.5.1-beta.4",
75
75
  "license": "UNLICENSED"
76
76
  }
package/src/config.js CHANGED
@@ -1911,12 +1911,15 @@ class Config {
1911
1911
  } else if (this.scope == 'development') {
1912
1912
  new_result = !(element.scope === 'testing')
1913
1913
  }
1914
+ /*
1914
1915
  if (global.GORDO && old_result !== new_result) {
1915
1916
  global.GORDO = false
1916
1917
  console.log("THERE WAS A DIFFERENCE ------------------------------------------------")
1917
1918
  debugger // greg23old
1918
1919
  }
1919
- return old_result
1920
+ */
1921
+ // return old_result
1922
+ return new_result
1920
1923
  }
1921
1924
 
1922
1925
  config.operators = config.operators.filter((element) => keep(element))