vite_plugin_deno_resolve icon indicating copy to clipboard operation
vite_plugin_deno_resolve copied to clipboard

A plugin for Vite that resolves modules with Deno.

Results 6 vite_plugin_deno_resolve issues
Sort by recently updated
recently updated
newest added

Fixes issue #7 The main bug was the code exiting early inside the transform function where there were valid import statements. It's a fairly crude fix, just duplicating the lines...

**Expected behavior:** Both single quoted `import x from 'y';` and double-quoted `import x from "y";` imports should be remapped to localhost. **Observed behaviour:** Only single quoted import statements get remapped,...

Support import_map.json will be useful https://deno.land/[email protected]/basics/modules/import_maps

enhancement

This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more.[View this repository on the Mend.io Web Portal](https://developer.mend.io/github/yegor256/requs). ## Config Migration Needed - [ ]...

enhancement
help wanted

Two problems currently: 1. Prebundling can't find the dependencies (react, react/jsx-runtime, react/jsx-dev-runtime) as it's currently hardcoded in Vite to use the node resolver. We can "work around this" by removing...

enhancement
help wanted

This PR adds basic support for loading `npm:` specifiers. It's a quick and dirty way to do that and it doesn't work completely - eg. React is distributed as CommonJS...