@lightupai/polaris 0.0.8 → 0.0.9
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/package.json +1 -1
- package/src/daemon/daemon.ts +1 -1
package/package.json
CHANGED
package/src/daemon/daemon.ts
CHANGED
|
@@ -161,7 +161,7 @@ function error(message: string, status: number): Response {
|
|
|
161
161
|
return json({ error: message }, status);
|
|
162
162
|
}
|
|
163
163
|
|
|
164
|
-
export function startDaemon(port = Number(process.env.POLARIS_DAEMON_PORT ??
|
|
164
|
+
export function startDaemon(port = Number(process.env.POLARIS_DAEMON_PORT ?? 4322)): {
|
|
165
165
|
server: Server;
|
|
166
166
|
sessions: Map<string, SessionMapping>;
|
|
167
167
|
mcpCallbacks: Map<string, (event: unknown) => void>;
|