()
| 135 | } |
| 136 | |
| 137 | async stop(): Promise<void> { |
| 138 | console.log() |
| 139 | this.log.info('Stopping dev watch mode...') |
| 140 | |
| 141 | if (this.watcher) { |
| 142 | await this.watcher.close() |
| 143 | this.watcher = null |
| 144 | } |
| 145 | |
| 146 | this.debounceQueue.clear() |
| 147 | this.cleanup() |
| 148 | } |
| 149 | |
| 150 | private startWatcher(): void { |
| 151 | const watcherConfig = { |
no test coverage detected