open-agents-ai 0.174.0 → 0.175.0
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/dist/index.js +5 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -65546,9 +65546,11 @@ async function main() {
|
|
|
65546
65546
|
printHelp2(version);
|
|
65547
65547
|
return;
|
|
65548
65548
|
}
|
|
65549
|
-
|
|
65550
|
-
|
|
65551
|
-
|
|
65549
|
+
if (!parsed.json) {
|
|
65550
|
+
const updateInfo = await checkForUpdate(version);
|
|
65551
|
+
if (updateInfo) {
|
|
65552
|
+
process.stderr.write(formatUpdateBanner(updateInfo));
|
|
65553
|
+
}
|
|
65552
65554
|
}
|
|
65553
65555
|
const baseConfig = loadConfig();
|
|
65554
65556
|
const config = mergeConfig(baseConfig, {
|
package/package.json
CHANGED