| 19 | import { initExtension } from "./init.js"; |
| 20 | |
| 21 | interface PackOptions { |
| 22 | extensionPath: string; |
| 23 | outputPath?: string; |
| 24 | silent?: boolean; |
| 25 | } |
| 26 | |
| 27 | function formatFileSize(bytes: number): string { |
| 28 | if (bytes < 1024) { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…