theprogrammablemind 7.6.0-beta.3 → 7.6.0-beta.5
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 +3 -1
- package/package.json +1 -1
- package/src/flatten.js +3 -0
package/client.js
CHANGED
@@ -1674,7 +1674,9 @@ const knowledgeModule = async ({
|
|
1674
1674
|
config.config.rebuild = true
|
1675
1675
|
}
|
1676
1676
|
config.load(template.template, template.instance, { rebuild: needsRebuild })
|
1677
|
-
|
1677
|
+
if (!args.query) {
|
1678
|
+
printConfig()
|
1679
|
+
}
|
1678
1680
|
if (needsRebuild) {
|
1679
1681
|
return
|
1680
1682
|
}
|
package/package.json
CHANGED