fix: third round of workover

This commit is contained in:
2026-02-27 09:53:36 +01:00
parent 467ef10e77
commit dc62937fdc
6 changed files with 435 additions and 14 deletions

View File

@@ -1503,4 +1503,10 @@ export function registerIpcHandlers(): void {
taskManager.on('taskProgress', forwardEvent('task:progress'));
taskManager.on('taskCompleted', forwardEvent('task:completed'));
taskManager.on('taskFailed', forwardEvent('task:failed'));
const scriptEngine = getScriptEngine();
scriptEngine.on('scriptCreated', forwardEvent('script:created'));
scriptEngine.on('scriptUpdated', forwardEvent('script:updated'));
scriptEngine.on('scriptDeleted', forwardEvent('script:deleted'));
scriptEngine.on('scriptsRebuilt', forwardEvent('scripts:rebuilt'));
}