()
| 25 | // Lazy container loading to avoid circular dependencies |
| 26 | let containerPromise = null |
| 27 | const getContainer = () => { |
| 28 | if (!containerPromise) { |
| 29 | containerPromise = import('../container.js').then(module => module.default || module) |
| 30 | } |
| 31 | return containerPromise |
| 32 | } |
| 33 | |
| 34 | class Cli extends Base { |
| 35 | constructor(runner, opts) { |
no outgoing calls
no test coverage detected