Skip to content

Commit

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

```js
import * as esbuild from "npm:[email protected]";
import * as esbuild from "npm:[email protected].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 "npm:[email protected]";

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

const result = await esbuild.build({
plugins: [...denoPlugins()],
Expand Down
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@luca/esbuild-deno-loader",
"version": "0.10.0",
"version": "0.10.1",
"exports": "./mod.ts",
"imports": {
"@std/assert": "jsr:@std/[email protected]",
Expand Down

0 comments on commit 3c84176

Please sign in to comment.