theprogrammablemind 7.5.8-beta.85 → 7.5.8-beta.86
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 +7 -0
package/package.json
CHANGED
package/src/config.js
CHANGED
@@ -990,6 +990,13 @@ class Config {
|
|
990
990
|
// things like webpack rewrite the functions if there are constants so this compare does not work
|
991
991
|
delete config.generators
|
992
992
|
delete config.semantics
|
993
|
+
(config.bridges || []).forEach((bridge) => {
|
994
|
+
delete bridge.generatorp
|
995
|
+
delete bridge.generatorr
|
996
|
+
delete bridge.generatorpr
|
997
|
+
delete bridge.evaluator
|
998
|
+
delete bridge.semantic
|
999
|
+
})
|
993
1000
|
} else {
|
994
1001
|
config.generators = (config.generators || []).map((generator) => {
|
995
1002
|
generator = {...generator}
|