1.0.4 • Published 6 months ago
@masslbs/deno-vite-plugin v1.0.4
MassLabs fork
we forked https://github.com/denoland/deno-vite-plugin/ becasue of an open performance issue regarding uncapped deno info ... calls
- https://github.com/denoland/deno-vite-plugin/issues/50
- https://github.com/denoland/deno-vite-plugin/issues/55
- https://github.com/denoland/deno-vite-plugin/pull/61
Deno vite plugin
Plugin to enable Deno resolution inside vite. It supports:
- Alias mappings in
deno.json npm:specifierjsr:specifierhttp:andhttps:specifiers
Limitations
Deno specific resolution cannot be used in vite.config.ts because it's not
possible to intercept the bundling process of the config file in vite.
Usage
Install this package:
# npm
npm install @deno/vite-plugin
# pnpm
pnpm install @deno/vite-plugin
# deno
deno install npm:@deno/vite-pluginAdd the plugin to your vite configuration file vite.config.ts:
import { defineConfig } from "vite";
+ import deno from "@deno/vite-plugin";
export default defineConfig({
+ plugins: [deno()],
});License
MIT, see the license file.
1.0.4
6 months ago