theprogrammablemind_4wp 9.6.3-beta.25 → 9.6.3-beta.27
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 +1 -1
- package/src/config.js +4 -0
- package/src/semantics.js +1 -0
package/package.json
CHANGED
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
|
|