feat(daemon): Add central TSPM daemon and IPC client; refactor CLI to use daemon and improve monitoring/error handling

This commit is contained in:
2025-08-25 08:52:57 +00:00
parent 1c06fb54b9
commit 3ad8f29e1c
23 changed files with 4761 additions and 3252 deletions

View File

@@ -1,5 +1,8 @@
export * from './classes.tspm.js';
export * from './classes.processmonitor.js';
export * from './classes.daemon.js';
export * from './classes.ipcclient.js';
export * from './ipc.types.js';
import * as cli from './cli.js';
@@ -8,4 +11,4 @@ import * as cli from './cli.js';
*/
export const runCli = async () => {
await cli.run();
}
};