theprogrammablemind_4wp 9.5.1-beta.2 → 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 +5 -4
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.2",
74
+ "version": "9.5.1-beta.4",
75
75
  "license": "UNLICENSED"
76
76
  }
package/src/config.js CHANGED
@@ -289,11 +289,9 @@ const priority_valid = (cp) => {
289
289
  const handleBridgeProps = (config, bridge, { addFirst, uuid } = {}) => {
290
290
  ecatch(`While processing the bridge for ${bridge.id}#${bridge.level}`,
291
291
  () => {
292
- /*
293
- if (bridge.development && config.isModule) {
292
+ if (bridge.scope && config.isModule) {
294
293
  return
295
294
  }
296
- */
297
295
  if (false && !bridge.bridge) {
298
296
  bridge.bridge = '{ ...next(operator) }'
299
297
  }
@@ -1913,12 +1911,15 @@ class Config {
1913
1911
  } else if (this.scope == 'development') {
1914
1912
  new_result = !(element.scope === 'testing')
1915
1913
  }
1914
+ /*
1916
1915
  if (global.GORDO && old_result !== new_result) {
1917
1916
  global.GORDO = false
1918
1917
  console.log("THERE WAS A DIFFERENCE ------------------------------------------------")
1919
1918
  debugger // greg23old
1920
1919
  }
1921
- return old_result
1920
+ */
1921
+ // return old_result
1922
+ return new_result
1922
1923
  }
1923
1924
 
1924
1925
  config.operators = config.operators.filter((element) => keep(element))