@stream-mdx/worker 0.2.0 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -4
- package/dist/direct.cjs +3978 -0
- package/dist/direct.d.cts +50 -0
- package/dist/direct.d.ts +50 -0
- package/dist/direct.mjs +3961 -0
- package/dist/hosted/markdown-worker.js +303 -23
- package/dist/index.cjs +3954 -3
- package/dist/index.d.cts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.mjs +3960 -0
- package/dist/node/index.cjs +383 -4
- package/dist/node/index.d.cts +68 -1
- package/dist/node/index.d.ts +68 -1
- package/dist/node/index.mjs +381 -4
- package/dist/node/worker-thread-entry.cjs +127 -3
- package/dist/node/worker-thread-entry.d.cts +2 -1
- package/dist/node/worker-thread-entry.d.ts +2 -1
- package/dist/node/worker-thread-entry.mjs +106 -3
- package/dist/worker-client-wln-351a.d.cts +84 -0
- package/dist/worker-client-wln-351a.d.ts +84 -0
- package/dist/worker-client.d.cts +2 -81
- package/dist/worker-client.d.ts +2 -81
- package/package.json +8 -3
package/README.md
CHANGED
|
@@ -43,10 +43,12 @@ If you compile MDX on the server (e.g. Next.js API route), use the same compilat
|
|
|
43
43
|
import { compileMdxContent } from "@stream-mdx/worker/mdx-compile";
|
|
44
44
|
```
|
|
45
45
|
|
|
46
|
-
See
|
|
46
|
+
See the React integration guide for full wiring and parity notes:
|
|
47
|
+
https://github.com/kmccleary3301/stream-mdx/blob/main/docs/REACT_INTEGRATION_GUIDE.md
|
|
47
48
|
|
|
48
49
|
## Docs
|
|
49
50
|
|
|
50
|
-
- React integration guide:
|
|
51
|
-
- Security model / CSP:
|
|
52
|
-
- Plugins & custom worker bundles:
|
|
51
|
+
- React integration guide: https://github.com/kmccleary3301/stream-mdx/blob/main/docs/REACT_INTEGRATION_GUIDE.md
|
|
52
|
+
- Security model / CSP: https://github.com/kmccleary3301/stream-mdx/blob/main/docs/SECURITY_MODEL.md
|
|
53
|
+
- Plugins & custom worker bundles: https://github.com/kmccleary3301/stream-mdx/blob/main/docs/STREAMING_MARKDOWN_PLUGINS_COOKBOOK.md
|
|
54
|
+
- CLI usage + worker-thread integration: https://github.com/kmccleary3301/stream-mdx/blob/main/docs/CLI_USAGE.md
|