vite_plugin_deno_resolve
vite_plugin_deno_resolve copied to clipboard
A plugin for Vite that resolves modules with Deno.
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
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 - [ ]...
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...
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...