theprogrammablemind 7.12.3-beta.1 → 7.12.3-beta.3

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 CHANGED
@@ -2138,7 +2138,10 @@ function w (func) {
2138
2138
  }
2139
2139
 
2140
2140
  const knowledgeModule = async (...args) => {
2141
- await knowledgeModuleImpl(...args).catch((e) => console.error(e))
2141
+ await knowledgeModuleImpl(...args).catch((e) => {
2142
+ console.error(e)
2143
+ process.exit(-1)
2144
+ })
2142
2145
  }
2143
2146
 
2144
2147
  module.exports = {
package/package.json CHANGED
@@ -65,6 +65,6 @@
65
65
  "json-stable-stringify": "^1.0.1",
66
66
  "node-fetch": "^2.6.1"
67
67
  },
68
- "version": "7.12.3-beta.1",
68
+ "version": "7.12.3-beta.3",
69
69
  "license": "UNLICENSED"
70
70
  }
package/src/config.js CHANGED
@@ -2765,7 +2765,7 @@ class Config {
2765
2765
  }
2766
2766
  })
2767
2767
 
2768
- mores.map((km) => {
2768
+ mores = mores.map((km) => {
2769
2769
  if (!(km instanceof Config)) {
2770
2770
  km = new Config(km)
2771
2771
  }