fix(cli): Fix internal imports, centralize IPC types and improve daemon entry/start behavior

This commit is contained in:
2025-08-28 18:34:56 +00:00
parent 529a403c4b
commit 4ee4bcdda2
20 changed files with 95 additions and 72 deletions

View File

@@ -1,9 +1,11 @@
export * from './classes.tspm.js';
export * from './classes.processmonitor.js';
export * from './classes.daemon.js';
export * from './classes.ipcclient.js';
export * from './classes.servicemanager.js';
export * from './ipc.types.js';
// Client exports - for library consumers
export * from './client/index.js';
// Protocol types - shared between client and daemon
export * from './shared/protocol/ipc.types.js';
// Daemon exports - for direct daemon control
export { startDaemon } from './daemon/index.js';
import * as cli from './cli.js';