22 lines
500 B
Markdown
22 lines
500 B
Markdown
|
# esbuild_deno_loader
|
||
|
|
||
|
Deno module resolution for `esbuild`.
|
||
|
|
||
|
## Example
|
||
|
|
||
|
This example bundles an entrypoint into a single ESM output.
|
||
|
|
||
|
```js
|
||
|
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();
|
||
|
```
|