theprogrammablemind 8.0.0-beta.66 → 8.0.0-beta.67
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 +1 -2
- package/package.json +1 -1
- package/src/config.js +0 -1
package/client.js
CHANGED
@@ -1495,7 +1495,7 @@ const knowledgeModuleImpl = async ({
|
|
1495
1495
|
}
|
1496
1496
|
if (!args.query && !args.test && !args.info && (args.save || args.saveDeveloper)) {
|
1497
1497
|
global.transitoryMode = true
|
1498
|
-
saveTests(config, test, testConfig, args.saveDeveloper)
|
1498
|
+
await saveTests(config, test, testConfig, args.saveDeveloper)
|
1499
1499
|
// } else if (args.build) {
|
1500
1500
|
} else if (args.info) {
|
1501
1501
|
showInfo(description, section, config)
|
@@ -1718,7 +1718,6 @@ const knowledgeModuleImpl = async ({
|
|
1718
1718
|
}
|
1719
1719
|
printConfig()
|
1720
1720
|
} finally {
|
1721
|
-
debugger
|
1722
1721
|
if (config) {
|
1723
1722
|
config.terminate()
|
1724
1723
|
}
|
package/package.json
CHANGED