Skip to content

Commit

Permalink
try upgrade esbuild
Browse files Browse the repository at this point in the history
  • Loading branch information
kt3k committed Dec 6, 2024
1 parent fc41587 commit f17655d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ Deno module resolution for `esbuild`.
This example bundles an entrypoint into a single ESM output.

```js
import * as esbuild from "npm:esbuild@0.20.2";
import * as esbuild from "npm:esbuild@0.24.0";
// 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.24.0/wasm.js";

import { denoPlugins } from "jsr:@luca/esbuild-deno-loader@^0.11.0";

Expand Down
4 changes: 2 additions & 2 deletions mod_test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as esbuildNative from "https://deno.land/x/esbuild@v0.20.2/mod.js";
import * as esbuildWasm from "https://deno.land/x/esbuild@v0.20.2/wasm.js";
import * as esbuildNative from "https://deno.land/x/esbuild@v0.24.0/mod.js";
import * as esbuildWasm from "https://deno.land/x/esbuild@v0.24.0/wasm.js";
import { join } from "@std/path";
import { assert, assertEquals, assertStringIncludes } from "@std/assert";
import {
Expand Down

0 comments on commit f17655d

Please sign in to comment.