From b8b20651b7a42f63cc8b3928fd59116650c7c555 Mon Sep 17 00:00:00 2001 From: John Spurlock <47259736+johnspurlock-skymethod@users.noreply.github.com> Date: Sat, 27 Jul 2024 12:21:06 -0500 Subject: [PATCH] Fix wasm module url in the main readme example Existing one 404ed --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 97ffefc..7f22d9a 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ This example bundles an entrypoint into a single ESM output. import * as esbuild from "npm:esbuild@0.20.2"; // Import the WASM build on platforms where running subprocesses is not // permitted, such as Deno Deploy, or when running without `--allow-run`. -// import * as esbuild from "https://deno.land/x/esbuild@0.20.2/wasm.js"; +// import * as esbuild from "https://deno.land/x/esbuild@v0.20.2/wasm.js"; import { denoPlugins } from "jsr:@luca/esbuild-deno-loader@^0.10.3";