|
export const execPath: typeof Deno.execPath = () => which.sync("deno"); |
I'm trying to build a cli with Deno and cross publish to npm using dnt but the cli works only if deno is installed and the above LOC should be the culprit. It tryes to find deno and throws if there's no deno installed.
Can i do something about this?