theprogrammablemind 7.12.3-beta.2 → 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.
Files changed (2) hide show
  1. package/client.js +4 -1
  2. package/package.json +1 -1
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.2",
68
+ "version": "7.12.3-beta.3",
69
69
  "license": "UNLICENSED"
70
70
  }