Skip to content

Commit 2482607

Browse files
authored
Tweak README and docs (#132)
* adjust readme * futz * v0.25.1
1 parent 44c8617 commit 2482607

File tree

63 files changed

+357
-285
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+357
-285
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Changelog
22

3-
## v0.25.0 (unreleased)
3+
## v0.25.1
4+
5+
- [#130](https://github.com/justjake/quickjs-emscripten/pull/129) Fix some README and docs quibbles.
6+
7+
## v0.25.0
48

59
- [#129](https://github.com/justjake/quickjs-emscripten/pull/129) Improve packaging strategy, native ES Modules, and browser-first builds.
610

README.md

Lines changed: 41 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -521,32 +521,32 @@ You can use quickjs-emscripten directly from an HTML file in two ways:
521521

522522
1. Import it in an ES Module script tag
523523

524-
```html
525-
<!doctype html>
526-
<!-- Import from a ES Module CDN -->
527-
<script type="module">
528-
import { getQuickJS } from "https://esm.sh/[email protected]"
529-
const QuickJS = await getQuickJS()
530-
console.log(QuickJS.evalCode("1+1"))
531-
</script>
532-
```
524+
```html
525+
<!doctype html>
526+
<!-- Import from a ES Module CDN -->
527+
<script type="module">
528+
import { getQuickJS } from "https://esm.sh/[email protected]"
529+
const QuickJS = await getQuickJS()
530+
console.log(QuickJS.evalCode("1+1"))
531+
</script>
532+
```
533533

534534
1. In edge cases, you might want to use the IIFE build which provides QuickJS as the global `QJS`. You should probably use the ES module though, any recent browser supports it.
535535

536-
```html
537-
<!doctype html>
538-
<!-- Add a script tag to load the library as the QJS global -->
539-
<script
540-
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/index.global.js"
541-
type="text/javascript"
542-
></script>
543-
<!-- Then use the QJS global in a script tag -->
544-
<script type="text/javascript">
545-
QJS.getQuickJS().then((QuickJS) => {
546-
console.log(QuickJS.evalCode("1+1"))
547-
})
548-
</script>
549-
```
536+
```html
537+
<!doctype html>
538+
<!-- Add a script tag to load the library as the QJS global -->
539+
<script
540+
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/index.global.js"
541+
type="text/javascript"
542+
></script>
543+
<!-- Then use the QJS global in a script tag -->
544+
<script type="text/javascript">
545+
QJS.getQuickJS().then((QuickJS) => {
546+
console.log(QuickJS.evalCode("1+1"))
547+
})
548+
</script>
549+
```
550550

551551
### quickjs-emscripten-core, variants, and advanced packaging
552552

@@ -572,12 +572,28 @@ See the [documentation of quickjs-emscripten-core][core] for more details.
572572

573573
```typescript
574574
import { newQuickJSWASMModuleFromVariant } from "quickjs-emscripten-core"
575-
import DEBUG_SYNC from "@jitl/quickjs-node-esm-debug-sync-wasm"
575+
import DEBUG_SYNC from "@jitl/quickjs-wasmfile-debug-sync"
576576

577577
const QuickJS = await newQuickJSWASMModuleFromVariant(DEBUG_SYNC)
578578
```
579579

580-
- Set `process.env.QTS_DEBUG` to see debug log messages from the Javascript part of this library.
580+
- Enable debug log messages from the Javascript part of this library with [setDebugMode][setDebugMode]:
581+
582+
```typescript
583+
import { setDebugMode } from "quickjs-emscripten"
584+
585+
setDebugMode(true)
586+
```
587+
588+
With quickjs-emscripten-core:
589+
590+
```typescript
591+
import { setDebugMode } from "quickjs-emscripten-core"
592+
593+
setDebugMode(true)
594+
```
595+
596+
[setDebugMode]: doc/quickjs-emscripten/exports.md#setdebugmode
581597

582598
### More Documentation
583599

doc/@jitl/quickjs-singlefile-browser-debug-asyncify/exports.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,17 @@
1010

1111
- [Variables](exports.md#variables)
1212
- [default](exports.md#default)
13-
- [[@jitl/quickjs-singlefile-browser-debug-asyncify](https://github.com/justjake/quickjs-emscripten/blob/main/doc/@jitl/quickjs-singlefile-browser-debug-asyncify/README.md)](exports.md#jitlquickjs-singlefile-browser-debug-asyncifyhttpsgithubcomjustjakequickjs-emscriptenblobmaindocjitlquickjs-singlefile-browser-debug-asyncifyreadmemd)
13+
- [@jitl/quickjs-singlefile-browser-debug-asyncify](exports.md#jitlquickjs-singlefile-browser-debug-asyncify)
1414

1515
## Variables
1616

1717
### default
1818

1919
> **`const`** **default**: [`QuickJSAsyncVariant`](../../quickjs-emscripten/interfaces/QuickJSAsyncVariant.md)
2020
21-
This export is a variant of the quickjs WASM library:
22-
### [@jitl/quickjs-singlefile-browser-debug-asyncify](https://github.com/justjake/quickjs-emscripten/blob/main/doc/@jitl/quickjs-singlefile-browser-debug-asyncify/README.md)
21+
### @jitl/quickjs-singlefile-browser-debug-asyncify
2322

23+
[Docs](https://github.com/justjake/quickjs-emscripten/blob/main/doc/@jitl/quickjs-singlefile-browser-debug-asyncify/README.md) |
2424
Variant with the WASM data embedded into a browser ESModule.
2525

2626
| Variable | Setting | Description |

doc/@jitl/quickjs-singlefile-browser-debug-sync/exports.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,17 @@
1010

1111
- [Variables](exports.md#variables)
1212
- [default](exports.md#default)
13-
- [[@jitl/quickjs-singlefile-browser-debug-sync](https://github.com/justjake/quickjs-emscripten/blob/main/doc/@jitl/quickjs-singlefile-browser-debug-sync/README.md)](exports.md#jitlquickjs-singlefile-browser-debug-synchttpsgithubcomjustjakequickjs-emscriptenblobmaindocjitlquickjs-singlefile-browser-debug-syncreadmemd)
13+
- [@jitl/quickjs-singlefile-browser-debug-sync](exports.md#jitlquickjs-singlefile-browser-debug-sync)
1414

1515
## Variables
1616

1717
### default
1818

1919
> **`const`** **default**: [`QuickJSSyncVariant`](../../quickjs-emscripten/interfaces/QuickJSSyncVariant.md)
2020
21-
This export is a variant of the quickjs WASM library:
22-
### [@jitl/quickjs-singlefile-browser-debug-sync](https://github.com/justjake/quickjs-emscripten/blob/main/doc/@jitl/quickjs-singlefile-browser-debug-sync/README.md)
21+
### @jitl/quickjs-singlefile-browser-debug-sync
2322

23+
[Docs](https://github.com/justjake/quickjs-emscripten/blob/main/doc/@jitl/quickjs-singlefile-browser-debug-sync/README.md) |
2424
Variant with the WASM data embedded into a browser ESModule.
2525

2626
| Variable | Setting | Description |

doc/@jitl/quickjs-singlefile-browser-release-asyncify/exports.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,17 @@
1010

1111
- [Variables](exports.md#variables)
1212
- [default](exports.md#default)
13-
- [[@jitl/quickjs-singlefile-browser-release-asyncify](https://github.com/justjake/quickjs-emscripten/blob/main/doc/@jitl/quickjs-singlefile-browser-release-asyncify/README.md)](exports.md#jitlquickjs-singlefile-browser-release-asyncifyhttpsgithubcomjustjakequickjs-emscriptenblobmaindocjitlquickjs-singlefile-browser-release-asyncifyreadmemd)
13+
- [@jitl/quickjs-singlefile-browser-release-asyncify](exports.md#jitlquickjs-singlefile-browser-release-asyncify)
1414

1515
## Variables
1616

1717
### default
1818

1919
> **`const`** **default**: [`QuickJSAsyncVariant`](../../quickjs-emscripten/interfaces/QuickJSAsyncVariant.md)
2020
21-
This export is a variant of the quickjs WASM library:
22-
### [@jitl/quickjs-singlefile-browser-release-asyncify](https://github.com/justjake/quickjs-emscripten/blob/main/doc/@jitl/quickjs-singlefile-browser-release-asyncify/README.md)
21+
### @jitl/quickjs-singlefile-browser-release-asyncify
2322

23+
[Docs](https://github.com/justjake/quickjs-emscripten/blob/main/doc/@jitl/quickjs-singlefile-browser-release-asyncify/README.md) |
2424
Variant with the WASM data embedded into a browser ESModule.
2525

2626
| Variable | Setting | Description |

doc/@jitl/quickjs-singlefile-browser-release-sync/exports.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,17 @@
1010

1111
- [Variables](exports.md#variables)
1212
- [default](exports.md#default)
13-
- [[@jitl/quickjs-singlefile-browser-release-sync](https://github.com/justjake/quickjs-emscripten/blob/main/doc/@jitl/quickjs-singlefile-browser-release-sync/README.md)](exports.md#jitlquickjs-singlefile-browser-release-synchttpsgithubcomjustjakequickjs-emscriptenblobmaindocjitlquickjs-singlefile-browser-release-syncreadmemd)
13+
- [@jitl/quickjs-singlefile-browser-release-sync](exports.md#jitlquickjs-singlefile-browser-release-sync)
1414

1515
## Variables
1616

1717
### default
1818

1919
> **`const`** **default**: [`QuickJSSyncVariant`](../../quickjs-emscripten/interfaces/QuickJSSyncVariant.md)
2020
21-
This export is a variant of the quickjs WASM library:
22-
### [@jitl/quickjs-singlefile-browser-release-sync](https://github.com/justjake/quickjs-emscripten/blob/main/doc/@jitl/quickjs-singlefile-browser-release-sync/README.md)
21+
### @jitl/quickjs-singlefile-browser-release-sync
2322

23+
[Docs](https://github.com/justjake/quickjs-emscripten/blob/main/doc/@jitl/quickjs-singlefile-browser-release-sync/README.md) |
2424
Variant with the WASM data embedded into a browser ESModule.
2525

2626
| Variable | Setting | Description |

doc/@jitl/quickjs-singlefile-cjs-debug-asyncify/exports.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,17 @@
1010

1111
- [Variables](exports.md#variables)
1212
- [default](exports.md#default)
13-
- [[@jitl/quickjs-singlefile-cjs-debug-asyncify](https://github.com/justjake/quickjs-emscripten/blob/main/doc/@jitl/quickjs-singlefile-cjs-debug-asyncify/README.md)](exports.md#jitlquickjs-singlefile-cjs-debug-asyncifyhttpsgithubcomjustjakequickjs-emscriptenblobmaindocjitlquickjs-singlefile-cjs-debug-asyncifyreadmemd)
13+
- [@jitl/quickjs-singlefile-cjs-debug-asyncify](exports.md#jitlquickjs-singlefile-cjs-debug-asyncify)
1414

1515
## Variables
1616

1717
### default
1818

1919
> **`const`** **default**: [`QuickJSAsyncVariant`](../../quickjs-emscripten/interfaces/QuickJSAsyncVariant.md)
2020
21-
This export is a variant of the quickjs WASM library:
22-
### [@jitl/quickjs-singlefile-cjs-debug-asyncify](https://github.com/justjake/quickjs-emscripten/blob/main/doc/@jitl/quickjs-singlefile-cjs-debug-asyncify/README.md)
21+
### @jitl/quickjs-singlefile-cjs-debug-asyncify
2322

23+
[Docs](https://github.com/justjake/quickjs-emscripten/blob/main/doc/@jitl/quickjs-singlefile-cjs-debug-asyncify/README.md) |
2424
Variant with the WASM data embedded into a universal (Node and Browser compatible) CommonJS module.
2525

2626
| Variable | Setting | Description |

doc/@jitl/quickjs-singlefile-cjs-debug-sync/exports.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,17 @@
1010

1111
- [Variables](exports.md#variables)
1212
- [default](exports.md#default)
13-
- [[@jitl/quickjs-singlefile-cjs-debug-sync](https://github.com/justjake/quickjs-emscripten/blob/main/doc/@jitl/quickjs-singlefile-cjs-debug-sync/README.md)](exports.md#jitlquickjs-singlefile-cjs-debug-synchttpsgithubcomjustjakequickjs-emscriptenblobmaindocjitlquickjs-singlefile-cjs-debug-syncreadmemd)
13+
- [@jitl/quickjs-singlefile-cjs-debug-sync](exports.md#jitlquickjs-singlefile-cjs-debug-sync)
1414

1515
## Variables
1616

1717
### default
1818

1919
> **`const`** **default**: [`QuickJSSyncVariant`](../../quickjs-emscripten/interfaces/QuickJSSyncVariant.md)
2020
21-
This export is a variant of the quickjs WASM library:
22-
### [@jitl/quickjs-singlefile-cjs-debug-sync](https://github.com/justjake/quickjs-emscripten/blob/main/doc/@jitl/quickjs-singlefile-cjs-debug-sync/README.md)
21+
### @jitl/quickjs-singlefile-cjs-debug-sync
2322

23+
[Docs](https://github.com/justjake/quickjs-emscripten/blob/main/doc/@jitl/quickjs-singlefile-cjs-debug-sync/README.md) |
2424
Variant with the WASM data embedded into a universal (Node and Browser compatible) CommonJS module.
2525

2626
| Variable | Setting | Description |

doc/@jitl/quickjs-singlefile-cjs-release-asyncify/exports.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,17 @@
1010

1111
- [Variables](exports.md#variables)
1212
- [default](exports.md#default)
13-
- [[@jitl/quickjs-singlefile-cjs-release-asyncify](https://github.com/justjake/quickjs-emscripten/blob/main/doc/@jitl/quickjs-singlefile-cjs-release-asyncify/README.md)](exports.md#jitlquickjs-singlefile-cjs-release-asyncifyhttpsgithubcomjustjakequickjs-emscriptenblobmaindocjitlquickjs-singlefile-cjs-release-asyncifyreadmemd)
13+
- [@jitl/quickjs-singlefile-cjs-release-asyncify](exports.md#jitlquickjs-singlefile-cjs-release-asyncify)
1414

1515
## Variables
1616

1717
### default
1818

1919
> **`const`** **default**: [`QuickJSAsyncVariant`](../../quickjs-emscripten/interfaces/QuickJSAsyncVariant.md)
2020
21-
This export is a variant of the quickjs WASM library:
22-
### [@jitl/quickjs-singlefile-cjs-release-asyncify](https://github.com/justjake/quickjs-emscripten/blob/main/doc/@jitl/quickjs-singlefile-cjs-release-asyncify/README.md)
21+
### @jitl/quickjs-singlefile-cjs-release-asyncify
2322

23+
[Docs](https://github.com/justjake/quickjs-emscripten/blob/main/doc/@jitl/quickjs-singlefile-cjs-release-asyncify/README.md) |
2424
Variant with the WASM data embedded into a universal (Node and Browser compatible) CommonJS module.
2525

2626
| Variable | Setting | Description |

doc/@jitl/quickjs-singlefile-cjs-release-sync/exports.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,17 @@
1010

1111
- [Variables](exports.md#variables)
1212
- [default](exports.md#default)
13-
- [[@jitl/quickjs-singlefile-cjs-release-sync](https://github.com/justjake/quickjs-emscripten/blob/main/doc/@jitl/quickjs-singlefile-cjs-release-sync/README.md)](exports.md#jitlquickjs-singlefile-cjs-release-synchttpsgithubcomjustjakequickjs-emscriptenblobmaindocjitlquickjs-singlefile-cjs-release-syncreadmemd)
13+
- [@jitl/quickjs-singlefile-cjs-release-sync](exports.md#jitlquickjs-singlefile-cjs-release-sync)
1414

1515
## Variables
1616

1717
### default
1818

1919
> **`const`** **default**: [`QuickJSSyncVariant`](../../quickjs-emscripten/interfaces/QuickJSSyncVariant.md)
2020
21-
This export is a variant of the quickjs WASM library:
22-
### [@jitl/quickjs-singlefile-cjs-release-sync](https://github.com/justjake/quickjs-emscripten/blob/main/doc/@jitl/quickjs-singlefile-cjs-release-sync/README.md)
21+
### @jitl/quickjs-singlefile-cjs-release-sync
2322

23+
[Docs](https://github.com/justjake/quickjs-emscripten/blob/main/doc/@jitl/quickjs-singlefile-cjs-release-sync/README.md) |
2424
Variant with the WASM data embedded into a universal (Node and Browser compatible) CommonJS module.
2525

2626
| Variable | Setting | Description |

doc/@jitl/quickjs-singlefile-mjs-debug-asyncify/exports.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,17 @@
1010

1111
- [Variables](exports.md#variables)
1212
- [default](exports.md#default)
13-
- [[@jitl/quickjs-singlefile-mjs-debug-asyncify](https://github.com/justjake/quickjs-emscripten/blob/main/doc/@jitl/quickjs-singlefile-mjs-debug-asyncify/README.md)](exports.md#jitlquickjs-singlefile-mjs-debug-asyncifyhttpsgithubcomjustjakequickjs-emscriptenblobmaindocjitlquickjs-singlefile-mjs-debug-asyncifyreadmemd)
13+
- [@jitl/quickjs-singlefile-mjs-debug-asyncify](exports.md#jitlquickjs-singlefile-mjs-debug-asyncify)
1414

1515
## Variables
1616

1717
### default
1818

1919
> **`const`** **default**: [`QuickJSAsyncVariant`](../../quickjs-emscripten/interfaces/QuickJSAsyncVariant.md)
2020
21-
This export is a variant of the quickjs WASM library:
22-
### [@jitl/quickjs-singlefile-mjs-debug-asyncify](https://github.com/justjake/quickjs-emscripten/blob/main/doc/@jitl/quickjs-singlefile-mjs-debug-asyncify/README.md)
21+
### @jitl/quickjs-singlefile-mjs-debug-asyncify
2322

23+
[Docs](https://github.com/justjake/quickjs-emscripten/blob/main/doc/@jitl/quickjs-singlefile-mjs-debug-asyncify/README.md) |
2424
Variant with the WASM data embedded into a NodeJS ESModule.
2525

2626
| Variable | Setting | Description |

doc/@jitl/quickjs-singlefile-mjs-debug-sync/exports.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,17 @@
1010

1111
- [Variables](exports.md#variables)
1212
- [default](exports.md#default)
13-
- [[@jitl/quickjs-singlefile-mjs-debug-sync](https://github.com/justjake/quickjs-emscripten/blob/main/doc/@jitl/quickjs-singlefile-mjs-debug-sync/README.md)](exports.md#jitlquickjs-singlefile-mjs-debug-synchttpsgithubcomjustjakequickjs-emscriptenblobmaindocjitlquickjs-singlefile-mjs-debug-syncreadmemd)
13+
- [@jitl/quickjs-singlefile-mjs-debug-sync](exports.md#jitlquickjs-singlefile-mjs-debug-sync)
1414

1515
## Variables
1616

1717
### default
1818

1919
> **`const`** **default**: [`QuickJSSyncVariant`](../../quickjs-emscripten/interfaces/QuickJSSyncVariant.md)
2020
21-
This export is a variant of the quickjs WASM library:
22-
### [@jitl/quickjs-singlefile-mjs-debug-sync](https://github.com/justjake/quickjs-emscripten/blob/main/doc/@jitl/quickjs-singlefile-mjs-debug-sync/README.md)
21+
### @jitl/quickjs-singlefile-mjs-debug-sync
2322

23+
[Docs](https://github.com/justjake/quickjs-emscripten/blob/main/doc/@jitl/quickjs-singlefile-mjs-debug-sync/README.md) |
2424
Variant with the WASM data embedded into a NodeJS ESModule.
2525

2626
| Variable | Setting | Description |

doc/@jitl/quickjs-singlefile-mjs-release-asyncify/exports.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,17 @@
1010

1111
- [Variables](exports.md#variables)
1212
- [default](exports.md#default)
13-
- [[@jitl/quickjs-singlefile-mjs-release-asyncify](https://github.com/justjake/quickjs-emscripten/blob/main/doc/@jitl/quickjs-singlefile-mjs-release-asyncify/README.md)](exports.md#jitlquickjs-singlefile-mjs-release-asyncifyhttpsgithubcomjustjakequickjs-emscriptenblobmaindocjitlquickjs-singlefile-mjs-release-asyncifyreadmemd)
13+
- [@jitl/quickjs-singlefile-mjs-release-asyncify](exports.md#jitlquickjs-singlefile-mjs-release-asyncify)
1414

1515
## Variables
1616

1717
### default
1818

1919
> **`const`** **default**: [`QuickJSAsyncVariant`](../../quickjs-emscripten/interfaces/QuickJSAsyncVariant.md)
2020
21-
This export is a variant of the quickjs WASM library:
22-
### [@jitl/quickjs-singlefile-mjs-release-asyncify](https://github.com/justjake/quickjs-emscripten/blob/main/doc/@jitl/quickjs-singlefile-mjs-release-asyncify/README.md)
21+
### @jitl/quickjs-singlefile-mjs-release-asyncify
2322

23+
[Docs](https://github.com/justjake/quickjs-emscripten/blob/main/doc/@jitl/quickjs-singlefile-mjs-release-asyncify/README.md) |
2424
Variant with the WASM data embedded into a NodeJS ESModule.
2525

2626
| Variable | Setting | Description |

doc/@jitl/quickjs-singlefile-mjs-release-sync/exports.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,17 @@
1010

1111
- [Variables](exports.md#variables)
1212
- [default](exports.md#default)
13-
- [[@jitl/quickjs-singlefile-mjs-release-sync](https://github.com/justjake/quickjs-emscripten/blob/main/doc/@jitl/quickjs-singlefile-mjs-release-sync/README.md)](exports.md#jitlquickjs-singlefile-mjs-release-synchttpsgithubcomjustjakequickjs-emscriptenblobmaindocjitlquickjs-singlefile-mjs-release-syncreadmemd)
13+
- [@jitl/quickjs-singlefile-mjs-release-sync](exports.md#jitlquickjs-singlefile-mjs-release-sync)
1414

1515
## Variables
1616

1717
### default
1818

1919
> **`const`** **default**: [`QuickJSSyncVariant`](../../quickjs-emscripten/interfaces/QuickJSSyncVariant.md)
2020
21-
This export is a variant of the quickjs WASM library:
22-
### [@jitl/quickjs-singlefile-mjs-release-sync](https://github.com/justjake/quickjs-emscripten/blob/main/doc/@jitl/quickjs-singlefile-mjs-release-sync/README.md)
21+
### @jitl/quickjs-singlefile-mjs-release-sync
2322

23+
[Docs](https://github.com/justjake/quickjs-emscripten/blob/main/doc/@jitl/quickjs-singlefile-mjs-release-sync/README.md) |
2424
Variant with the WASM data embedded into a NodeJS ESModule.
2525

2626
| Variable | Setting | Description |

doc/@jitl/quickjs-wasmfile-debug-asyncify/exports.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,17 @@
1010

1111
- [Variables](exports.md#variables)
1212
- [default](exports.md#default)
13-
- [[@jitl/quickjs-wasmfile-debug-asyncify](https://github.com/justjake/quickjs-emscripten/blob/main/doc/@jitl/quickjs-wasmfile-debug-asyncify/README.md)](exports.md#jitlquickjs-wasmfile-debug-asyncifyhttpsgithubcomjustjakequickjs-emscriptenblobmaindocjitlquickjs-wasmfile-debug-asyncifyreadmemd)
13+
- [@jitl/quickjs-wasmfile-debug-asyncify](exports.md#jitlquickjs-wasmfile-debug-asyncify)
1414

1515
## Variables
1616

1717
### default
1818

1919
> **`const`** **default**: [`QuickJSAsyncVariant`](../../quickjs-emscripten/interfaces/QuickJSAsyncVariant.md)
2020
21-
This export is a variant of the quickjs WASM library:
22-
### [@jitl/quickjs-wasmfile-debug-asyncify](https://github.com/justjake/quickjs-emscripten/blob/main/doc/@jitl/quickjs-wasmfile-debug-asyncify/README.md)
21+
### @jitl/quickjs-wasmfile-debug-asyncify
2322

23+
[Docs](https://github.com/justjake/quickjs-emscripten/blob/main/doc/@jitl/quickjs-wasmfile-debug-asyncify/README.md) |
2424
Variant with separate .WASM file. Supports browser ESM, NodeJS ESM, and NodeJS CommonJS.
2525

2626
| Variable | Setting | Description |

doc/@jitl/quickjs-wasmfile-debug-sync/exports.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,17 @@
1010

1111
- [Variables](exports.md#variables)
1212
- [default](exports.md#default)
13-
- [[@jitl/quickjs-wasmfile-debug-sync](https://github.com/justjake/quickjs-emscripten/blob/main/doc/@jitl/quickjs-wasmfile-debug-sync/README.md)](exports.md#jitlquickjs-wasmfile-debug-synchttpsgithubcomjustjakequickjs-emscriptenblobmaindocjitlquickjs-wasmfile-debug-syncreadmemd)
13+
- [@jitl/quickjs-wasmfile-debug-sync](exports.md#jitlquickjs-wasmfile-debug-sync)
1414

1515
## Variables
1616

1717
### default
1818

1919
> **`const`** **default**: [`QuickJSSyncVariant`](../../quickjs-emscripten/interfaces/QuickJSSyncVariant.md)
2020
21-
This export is a variant of the quickjs WASM library:
22-
### [@jitl/quickjs-wasmfile-debug-sync](https://github.com/justjake/quickjs-emscripten/blob/main/doc/@jitl/quickjs-wasmfile-debug-sync/README.md)
21+
### @jitl/quickjs-wasmfile-debug-sync
2322

23+
[Docs](https://github.com/justjake/quickjs-emscripten/blob/main/doc/@jitl/quickjs-wasmfile-debug-sync/README.md) |
2424
Variant with separate .WASM file. Supports browser ESM, NodeJS ESM, and NodeJS CommonJS.
2525

2626
| Variable | Setting | Description |

0 commit comments

Comments
 (0)