theprogrammablemind_4wp 9.3.0-beta.44 → 9.3.0-beta.46
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/client.js +0 -1
- package/package.json +1 -1
- package/src/config.js +3 -3
- package/src/debug.js +1 -1
- package/src/project.js +1 -1
package/client.js
CHANGED
package/package.json
CHANGED
package/src/config.js
CHANGED
@@ -1291,7 +1291,7 @@ class Config {
|
|
1291
1291
|
}
|
1292
1292
|
}
|
1293
1293
|
|
1294
|
-
addEnable(key) {
|
1294
|
+
addEnable (key) {
|
1295
1295
|
this._enable.push(key)
|
1296
1296
|
}
|
1297
1297
|
|
@@ -3189,10 +3189,10 @@ class Config {
|
|
3189
3189
|
}
|
3190
3190
|
if (km) {
|
3191
3191
|
if (more.semantics) {
|
3192
|
-
more.semantics.map(
|
3192
|
+
more.semantics.map((s) => s.km = km)
|
3193
3193
|
}
|
3194
3194
|
if (more.generators) {
|
3195
|
-
more.generators.map(
|
3195
|
+
more.generators.map((g) => g.km = km)
|
3196
3196
|
}
|
3197
3197
|
}
|
3198
3198
|
const normalizeIsA = (edge) => {
|
package/src/debug.js
CHANGED
@@ -31,7 +31,7 @@ const wasHit = (name) => {
|
|
31
31
|
return hits[name]
|
32
32
|
}
|
33
33
|
|
34
|
-
const counter = (name, { breakAt=[], debugBreak=true, tag='' } = {}) => {
|
34
|
+
const counter = (name, { breakAt = [], debugBreak = true, tag = '' } = {}) => {
|
35
35
|
if (!counters[name]) {
|
36
36
|
counters[name] = 0
|
37
37
|
}
|