From 1c2096d8f4c84de2d38dfe645577ab5aca484ad3 Mon Sep 17 00:00:00 2001 From: Jeremy Date: Mon, 13 Apr 2026 22:38:53 -0500 Subject: [PATCH] chore: remove stale src/app-paths.js leftover Tracked output from 2022 (commit d93956ba4) that's missing the modern GSD_HOME env support and webPreferencesPath export present in the .ts source. No runtime path consumes it, but the test compile script's copyAssets step overlays src/* onto esbuild output in dist-test, so the stale .js was shadowing the compiled app-paths and breaking any unit test transitively importing webPreferencesPath. --- src/app-paths.js | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 src/app-paths.js diff --git a/src/app-paths.js b/src/app-paths.js deleted file mode 100644 index 22be2b89d..000000000 --- a/src/app-paths.js +++ /dev/null @@ -1,8 +0,0 @@ -import { homedir } from 'os' -import { join } from 'path' - -export const appRoot = join(homedir(), '.gsd') -export const agentDir = join(appRoot, 'agent') -export const sessionsDir = join(appRoot, 'sessions') -export const authFilePath = join(agentDir, 'auth.json') -export const webPidFilePath = join(appRoot, 'web-server.pid')