| 1 | import { type Compiler } from "webpack"; |
| 2 | |
| 3 | interface CLIPluginOptions { |
| 4 | isMultiCompiler?: boolean; |
| 5 | configPath?: string[]; |
| 6 | helpfulOutput: boolean; |
| 7 | hot?: boolean | "only"; |
| 8 | progress?: boolean | "profile"; |
| 9 | prefetch?: string; |
| 10 | analyze?: boolean; |
| 11 | } |
| 12 | |
| 13 | export default class CLIPlugin { |
| 14 | logger!: ReturnType<Compiler["getInfrastructureLogger"]>; |
nothing calls this directly
no outgoing calls
no test coverage detected