ayoreis / esbuild_deno_loader

Deno module resolution for `esbuild`

Home Page:https://deno.land/x/esbuild_deno_loader

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

esbuild_deno_loader

Deno module resolution for esbuild.

Example

This example bundles an entrypoint into a single ESM output.

import * as esbuild from "https://deno.land/x/esbuild@v0.14.51/mod.js";
import { denoPlugin } from "https://deno.land/x/esbuild_deno_loader@0.5.2/mod.ts";

await esbuild.build({
  plugins: [denoPlugin()],
  entryPoints: ["https://deno.land/std@0.150.0/hash/sha1.ts"],
  outfile: "./dist/sha1.esm.js",
  bundle: true,
  format: "esm",
});
esbuild.stop();

About

Deno module resolution for `esbuild`

https://deno.land/x/esbuild_deno_loader

License:MIT License


Languages

Language:TypeScript 99.6%Language:Makefile 0.4%