(root: string, spec: string)
| 21 | import {faint} from "./tty.js"; |
| 22 | |
| 23 | export async function resolveNodeImport(root: string, spec: string): Promise<string> { |
| 24 | return resolveNodeImportInternal(op.join(root, ".observablehq", "cache", "_node"), root, spec); |
| 25 | } |
| 26 | |
| 27 | const bundlePromises = new Map<string, Promise<string>>(); |
| 28 |
no test coverage detected