@octanejs/mdx 0.1.0 → 0.1.2
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 -0
- package/package.json +10 -3
package/README.md
CHANGED
|
@@ -127,3 +127,9 @@ async — it works in the vite plugin and `compileMdx`, not `compileMdxSync`.
|
|
|
127
127
|
export in octane's runtime `hmr()` and self-accepts, so live mounts re-render
|
|
128
128
|
the new body in place (no page reload; the vite plugin enables this in serve
|
|
129
129
|
mode automatically).
|
|
130
|
+
|
|
131
|
+
## Status
|
|
132
|
+
|
|
133
|
+
Current scope, known divergences, and verification status are tracked in the
|
|
134
|
+
generated [bindings status table](../../docs/bindings-status.md), sourced from
|
|
135
|
+
this package's [`status.json`](./status.json).
|
package/package.json
CHANGED
|
@@ -1,8 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@octanejs/mdx",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
|
+
"octane": {
|
|
7
|
+
"hookSlots": {
|
|
8
|
+
"manual": [
|
|
9
|
+
"src"
|
|
10
|
+
]
|
|
11
|
+
}
|
|
12
|
+
},
|
|
6
13
|
"description": "MDX for the octane renderer — compiles .mdx/.md through @mdx-js/mdx to JSX source and then through octane/compiler, so documents render as real compiled octane components (templates, not runtime descriptors); ships the @mdx-js/react provider layer (MDXProvider/useMDXComponents) ported onto octane context.",
|
|
7
14
|
"author": {
|
|
8
15
|
"name": "Dominic Gannaway",
|
|
@@ -43,14 +50,14 @@
|
|
|
43
50
|
"remark-gfm": "^4.0.1",
|
|
44
51
|
"remark-mdx-frontmatter": "^5.2.0",
|
|
45
52
|
"source-map": "^0.7.6",
|
|
46
|
-
"octane": "0.1.
|
|
53
|
+
"octane": "0.1.5"
|
|
47
54
|
},
|
|
48
55
|
"devDependencies": {
|
|
49
56
|
"@jridgewell/trace-mapping": "^0.3.31",
|
|
50
57
|
"@shikijs/rehype": "^3.0.0",
|
|
51
58
|
"vite": "^8.0.16",
|
|
52
59
|
"vitest": "^4.1.9",
|
|
53
|
-
"@octanejs/testing-library": "0.1.
|
|
60
|
+
"@octanejs/testing-library": "0.1.2"
|
|
54
61
|
},
|
|
55
62
|
"scripts": {
|
|
56
63
|
"test": "vitest run"
|