modelstat 0.10.1 → 0.10.2
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/cli.mjs +8 -3
- package/dist/cli.mjs.map +1 -1
- package/package.json +3 -3
- package/scripts/postinstall.mjs +57 -35
package/dist/cli.mjs
CHANGED
|
@@ -37315,7 +37315,7 @@ var init_scan = __esm({
|
|
|
37315
37315
|
init_api();
|
|
37316
37316
|
init_config2();
|
|
37317
37317
|
init_pipeline2();
|
|
37318
|
-
DAEMON_VERSION = true ? "daemon-0.10.
|
|
37318
|
+
DAEMON_VERSION = true ? "daemon-0.10.2" : "daemon-dev";
|
|
37319
37319
|
BATCH_MAX_EVENTS = INGEST_BATCH_MAX_EVENTS;
|
|
37320
37320
|
BATCH_MAX_TOOL_CALLS = 2e4;
|
|
37321
37321
|
BATCH_BUFFER_HARD_CAP = BATCH_MAX_EVENTS * 2;
|
|
@@ -40262,7 +40262,7 @@ var init_daemon = __esm({
|
|
|
40262
40262
|
init_scan();
|
|
40263
40263
|
init_single_flight();
|
|
40264
40264
|
init_update();
|
|
40265
|
-
DAEMON_VERSION2 = true ? "daemon-0.10.
|
|
40265
|
+
DAEMON_VERSION2 = true ? "daemon-0.10.2" : "daemon-dev";
|
|
40266
40266
|
HEARTBEAT_INTERVAL_MS = 1e4;
|
|
40267
40267
|
SCAN_INTERVAL_MS = 5 * 60 * 1e3;
|
|
40268
40268
|
DISCOVERY_INTERVAL_MS = 6e4;
|
|
@@ -40879,7 +40879,7 @@ function tryOpenBrowser(url) {
|
|
|
40879
40879
|
return false;
|
|
40880
40880
|
}
|
|
40881
40881
|
}
|
|
40882
|
-
var DAEMON_VERSION3 = true ? "daemon-0.10.
|
|
40882
|
+
var DAEMON_VERSION3 = true ? "daemon-0.10.2" : "daemon-dev";
|
|
40883
40883
|
function osFamily() {
|
|
40884
40884
|
const p = platform6();
|
|
40885
40885
|
if (p === "darwin") return "macos";
|
|
@@ -41564,6 +41564,11 @@ async function main() {
|
|
|
41564
41564
|
console.log(`\u2713 runtime staged at ${dest}`);
|
|
41565
41565
|
return;
|
|
41566
41566
|
}
|
|
41567
|
+
case "_install-service": {
|
|
41568
|
+
const svc = installService();
|
|
41569
|
+
console.log(`\u2713 managed background service installed + started (${svc.path})`);
|
|
41570
|
+
return;
|
|
41571
|
+
}
|
|
41567
41572
|
case "_daemon-health": {
|
|
41568
41573
|
try {
|
|
41569
41574
|
console.log(JSON.stringify(daemonHealth({ myDaemonVersion: DAEMON_VERSION3 })));
|