theprogrammablemind_4wp 7.12.3-beta.2 → 7.12.3-beta.3
Sign up to get free protection for your applications and to get access to all the features.
- package/client.js +4 -1
- 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) =>
|
2141
|
+
await knowledgeModuleImpl(...args).catch((e) => {
|
2142
|
+
console.error(e)
|
2143
|
+
process.exit(-1)
|
2144
|
+
})
|
2142
2145
|
}
|
2143
2146
|
|
2144
2147
|
module.exports = {
|