-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f65de52
commit 3c84176
Showing
2 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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()], | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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]", | ||
|