@adhdev/daemon-standalone 0.8.16 → 0.8.18
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
CHANGED
|
@@ -30413,6 +30413,7 @@ ${data.message || ""}`.trim();
|
|
|
30413
30413
|
setLogLevel: () => setLogLevel,
|
|
30414
30414
|
setupIdeInstance: () => setupIdeInstance,
|
|
30415
30415
|
shutdownDaemonComponents: () => shutdownDaemonComponents2,
|
|
30416
|
+
spawnDetachedDaemonUpgradeHelper: () => spawnDetachedDaemonUpgradeHelper,
|
|
30416
30417
|
startDaemonDevSupport: () => startDaemonDevSupport2,
|
|
30417
30418
|
updateConfig: () => updateConfig,
|
|
30418
30419
|
upsertSavedProviderSession: () => upsertSavedProviderSession
|
|
@@ -39707,6 +39708,11 @@ Run 'adhdev doctor' for detailed diagnostics.`
|
|
|
39707
39708
|
if (installOutput.trim()) {
|
|
39708
39709
|
appendUpgradeLog(installOutput.trim());
|
|
39709
39710
|
}
|
|
39711
|
+
if (process.platform === "win32") {
|
|
39712
|
+
await new Promise((resolve9) => setTimeout(resolve9, 500));
|
|
39713
|
+
cleanupStaleGlobalInstallDirs(payload.packageName);
|
|
39714
|
+
appendUpgradeLog("Post-install staging cleanup complete");
|
|
39715
|
+
}
|
|
39710
39716
|
if (restartArgv.length > 0) {
|
|
39711
39717
|
const env = { ...process.env };
|
|
39712
39718
|
delete env[UPGRADE_HELPER_ENV];
|