The shared exec() helper fails to launch command shims on Windows. For example, installed CLIs such as npx, vsce, jsr, or a test-installed pandoc.cmd are on PATH but spawn('<command>', args) returns ENOENT because the executable is a .cmd shim.
This breaks adapters that rely on external CLIs even when those CLIs are installed.
I opened a fix in #445.
The shared
exec()helper fails to launch command shims on Windows. For example, installed CLIs such asnpx,vsce,jsr, or a test-installedpandoc.cmdare on PATH butspawn('<command>', args)returnsENOENTbecause the executable is a.cmdshim.This breaks adapters that rely on external CLIs even when those CLIs are installed.
I opened a fix in #445.