theprogrammablemind_4wp 9.6.3-beta.25 → 9.6.3-beta.26

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 CHANGED
@@ -73,6 +73,6 @@
73
73
  "scriptjs": "^2.5.9",
74
74
  "uuid": "^8.3.2"
75
75
  },
76
- "version": "9.6.3-beta.25",
76
+ "version": "9.6.3-beta.26",
77
77
  "license": "UNLICENSED"
78
78
  }
package/src/config.js CHANGED
@@ -2878,6 +2878,9 @@ class Config {
2878
2878
  }
2879
2879
 
2880
2880
  getContextChecks() {
2881
+ if (this.getContextChecksCache) {
2882
+ return this.getContextChecksCache
2883
+ }
2881
2884
  const allChecks = []
2882
2885
  let defaults = () => []
2883
2886
  if (this.loadOrdering) {
@@ -2914,6 +2917,7 @@ class Config {
2914
2917
  match: () => true,
2915
2918
  apply: defaults
2916
2919
  })
2920
+ this.getContextChecksCache = allChecks
2917
2921
  return allChecks
2918
2922
  }
2919
2923
 
package/src/semantics.js CHANGED
@@ -109,6 +109,7 @@ class Semantic {
109
109
  args.handlerStack.pop()
110
110
  } catch( e ) {
111
111
  args.handlerStack.pop()
112
+ throw e
112
113
  }
113
114
  return contextPrime
114
115
  }