Skip to content

Commit a62cf50

Browse files
committed
docs: 📝 fix JSR import example
JSR is already mapped to the bundler directory fixes #4
1 parent 01510f4 commit a62cf50

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Uses the [Rust MaxmindDB library](https://crates.io/crates/maxminddb) to create
3131
- [x] Deno
3232
- [x] Bun
3333
- [/] Browser (tests are flaky, so not certain)
34-
- [?] Cloudflare Workers (have not been able to get them to work locally, you can see the tests [here](https://github.com/josh-hemphill/maxminddb-wasm/blob/main/.github/workflows/test.yml))
34+
- [?] Cloudflare Workers (have not been able to get them to work locally, you can [see the tests here](https://github.com/josh-hemphill/maxminddb-wasm/blob/main/.github/workflows/test.yml))
3535

3636
## Installation
3737

@@ -46,7 +46,7 @@ pnpm add maxminddb-wasm
4646
### Deno ([jsr](https://jsr.io/docs/introduction))
4747

4848
```ts
49-
import { Maxmind } from "jsr:@josh-hemphill/maxminddb-wasm/bundler";
49+
import { Maxmind } from "jsr:@josh-hemphill/maxminddb-wasm";
5050
```
5151

5252
## Usage Examples
@@ -66,7 +66,7 @@ console.log(result);
6666
### Deno
6767

6868
```ts
69-
import { Maxmind } from "jsr:@josh-hemphill/maxminddb-wasm/bundler";
69+
import { Maxmind } from "jsr:@josh-hemphill/maxminddb-wasm";
7070

7171
const dbFile = await Deno.readFile('./GeoLite2-City.mmdb');
7272
const maxmind = new Maxmind(dbFile);

0 commit comments

Comments
 (0)