(verbose: boolean, msg: string)
| 75 | } |
| 76 | |
| 77 | function log(verbose: boolean, msg: string): void { |
| 78 | if (verbose) process.stderr.write(`[design-daemon] ${msg}\n`); |
| 79 | } |
| 80 | |
| 81 | /** |
| 82 | * Ensure a design daemon is reachable on the project's state file. Returns |
no outgoing calls
no test coverage detected