(condition: boolean, message: string)
| 41 | } |
| 42 | |
| 43 | static assert(condition: boolean, message: string): void { |
| 44 | if (!condition) throw new Error(`Assertion failed: ${message}`); |
| 45 | } |
| 46 | |
| 47 | async runAll(): Promise<void> { |
| 48 | console.log(`Config: ${this.configPath}`); |