minimax-status 1.0.2 → 1.0.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.
- package/cli/index.js +2 -2
- package/cli/statusbar.js +2 -2
- package/package.json +1 -1
package/cli/index.js
CHANGED
|
@@ -335,8 +335,8 @@ function startWatching(api, statusBar) {
|
|
|
335
335
|
// Initial update
|
|
336
336
|
update();
|
|
337
337
|
|
|
338
|
-
// Update every
|
|
339
|
-
intervalId = setInterval(update,
|
|
338
|
+
// Update every 10 seconds for near real-time updates
|
|
339
|
+
intervalId = setInterval(update, 10000);
|
|
340
340
|
|
|
341
341
|
// Handle Ctrl+C
|
|
342
342
|
process.on("SIGINT", () => {
|
package/cli/statusbar.js
CHANGED