fix(config): migrate project metadata and documentation to .smartconfig.json

This commit is contained in:
2026-03-24 19:02:50 +00:00
parent 5128802ecf
commit f7443fabf1
11 changed files with 749 additions and 406 deletions

View File

@@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@git.zone/tswatch',
version: '3.3.1',
version: '3.3.2',
description: 'A development tool for automatically watching and re-compiling TypeScript projects upon detecting file changes, enhancing developer workflows.'
}

View File

@@ -32,7 +32,7 @@ export class Watcher {
executor: 'bash',
});
private currentExecution: plugins.smartshell.IExecResultStreaming;
private currentExecution: plugins.smartshell.IExecResultStreaming | undefined;
private smartwatchInstance = new plugins.smartwatch.Smartwatch([]);
private options: IWatcherConstructorOptions;
private debounceTimer: NodeJS.Timeout | null = null;