Skip to content

Commit a2de306

Browse files
committed
docs(site): update Fuse.js version in links
1 parent 1c53a7c commit a2de306

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

docs/getting-started/installation.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ For prototyping or learning purposes, you can use the latest version with:
2929
For production, we recommend linking to a specific version number and build to avoid unexpected breakage from newer versions:
3030

3131
```html
32-
<script src="https://cdn.jsdelivr.net/npm/fuse.js@6.2.1"></script>
32+
<script src="https://cdn.jsdelivr.net/npm/fuse.js@6.3.0"></script>
3333
```
3434

3535
If you are using native ES Modules, there is also an ES Modules compatible build:
3636

3737
```html
3838
<script type="module">
39-
import Fuse from 'https://cdn.jsdelivr.net/npm/fuse.js@6.2.1/dist/fuse.esm.js'
39+
import Fuse from 'https://cdn.jsdelivr.net/npm/fuse.js@6.3.0/dist/fuse.esm.js'
4040
</script>
4141
```
4242

@@ -52,6 +52,6 @@ version in your published site, replacing `fuse.js` with `fuse.min.js`. This is
5252
You can directly import `Fuse` as an ES module from the deno.land/x service:
5353

5454
```typescript
55-
// @deno-types="https://deno.land/x/fuse@v6.2.1/dist/fuse.d.ts"
56-
import Fuse from 'https://deno.land/x/fuse@v6.2.1/dist/fuse.esm.min.js'
55+
// @deno-types="https://deno.land/x/fuse@v6.3.0/dist/fuse.d.ts"
56+
import Fuse from 'https://deno.land/x/fuse@v6.3.0/dist/fuse.esm.min.js'
5757
```

0 commit comments

Comments
 (0)