(first: string, second: string)
| 591 | |
| 592 | // Levenshtein edit distance between two strings, for "did you mean" suggestions. |
| 593 | static #distance(first: string, second: string): number { |
| 594 | return distance(first, second); |
| 595 | } |
| 596 | |
| 597 | getLogger(): Logger { |
| 598 | // Status icons brand every webpack-cli message (`✔`/`✖`/`⚠`/`ℹ`). They sit |