You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
deno vendor a.ts deno run -A --import-map vendor/import_map.json a.ts
error: Uncaught TypeError: Module not found "file:///home/mrcool/dev/deno/lab/qsdq/vendor/deno.land/[email protected]/node/module_all.ts".
at async loadBuiltinNodeModules ([deno:cli/node/mod.rs:415:32]:2:25)
The text was updated successfully, but these errors were encountered:
I investigated and am able to reproduce when there are npm specifiers in the lockfile. In some respects this is just deno vendor not having npm specifier support yet.
This makes my editor automatically detects that it should use deno lsp whenever I'm in any path under deno, but now running any deno file under deno projects actually creates the lock in the root directory adjacent to deno.json
I guess if all this is intended, I can just use another marker file to trigger my editor
deno vendor a.ts
deno run -A --import-map vendor/import_map.json a.ts
The text was updated successfully, but these errors were encountered: