satteri 0.3.4 → 0.3.5
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/dist/binding.browser.d.ts +1 -1
- package/dist/binding.browser.js +1 -1
- package/dist/binding.d.ts +1 -1
- package/dist/binding.js +1 -1
- package/dist/compile.js +3 -3
- package/dist/hast/hast-reader.js +5 -4
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/mdast/mdast-reader.js +6 -5
- package/dist/mdast/mdast-visitor.js +2 -2
- package/dist/types.d.ts +0 -1
- package/index.d.ts +43 -32
- package/index.js +53 -54
- package/package.json +7 -7
- package/satteri_napi.wasi-browser.js +0 -1
- package/satteri_napi.wasi.cjs +0 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
export { applyCommandsAndConvertToHastHandle, applyCommandsToHandle, applyCommandsToMdastHandle, compileHandle, compileMdx, convertMdastToHastHandle, createHastHandle, createMdastHandle, createMdxHastHandle, createMdxMdastHandle, dropHandle, getHandleSource, getNodeData, mdastTextContentHandle, parseEsm, parseExpression, parseToHtml, renderHandle, serializeHandle,
|
|
1
|
+
export { applyCommandsAndConvertToHastHandle, applyCommandsToHandle, applyCommandsToMdastHandle, compileHandle, compileMdx, convertMdastToHastHandle, createHastHandle, createMdastHandle, createMdxHastHandle, createMdxMdastHandle, dropHandle, getHandleSource, getNodeData, mdastTextContentHandle, parseEsm, parseExpression, parseToHtml, renderHandle, serializeHandle, setNodeData, textContentHandle, walkHandle, walkMdastHandle, } from "../satteri_napi.wasi-browser.js";
|
package/dist/binding.browser.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// @ts-nocheck — WASM browser binding has no type declarations
|
|
2
|
-
export { applyCommandsAndConvertToHastHandle, applyCommandsToHandle, applyCommandsToMdastHandle, compileHandle, compileMdx, convertMdastToHastHandle, createHastHandle, createMdastHandle, createMdxHastHandle, createMdxMdastHandle, dropHandle, getHandleSource, getNodeData, mdastTextContentHandle, parseEsm, parseExpression, parseToHtml, renderHandle, serializeHandle,
|
|
2
|
+
export { applyCommandsAndConvertToHastHandle, applyCommandsToHandle, applyCommandsToMdastHandle, compileHandle, compileMdx, convertMdastToHastHandle, createHastHandle, createMdastHandle, createMdxHastHandle, createMdxMdastHandle, dropHandle, getHandleSource, getNodeData, mdastTextContentHandle, parseEsm, parseExpression, parseToHtml, renderHandle, serializeHandle, setNodeData, textContentHandle, walkHandle, walkMdastHandle, } from "../satteri_napi.wasi-browser.js";
|
package/dist/binding.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { applyCommandsAndConvertToHastHandle, applyCommandsToHandle, applyCommandsToMdastHandle, compileHandle, compileMdx, convertMdastToHastHandle, createHastHandle, createMdastHandle, createMdxHastHandle, createMdxMdastHandle, dropHandle, getHandleSource, getNodeData, mdastTextContentHandle, parseEsm, parseExpression, parseToHtml, renderHandle, serializeHandle,
|
|
1
|
+
export { applyCommandsAndConvertToHastHandle, applyCommandsToHandle, applyCommandsToMdastHandle, compileHandle, compileMdx, convertMdastToHastHandle, createHastHandle, createMdastHandle, createMdxHastHandle, createMdxMdastHandle, dropHandle, getHandleSource, getNodeData, mdastTextContentHandle, parseEsm, parseExpression, parseToHtml, renderHandle, serializeHandle, setNodeData, textContentHandle, walkHandle, walkMdastHandle, } from "../index.js";
|
package/dist/binding.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { applyCommandsAndConvertToHastHandle, applyCommandsToHandle, applyCommandsToMdastHandle, compileHandle, compileMdx, convertMdastToHastHandle, createHastHandle, createMdastHandle, createMdxHastHandle, createMdxMdastHandle, dropHandle, getHandleSource, getNodeData, mdastTextContentHandle, parseEsm, parseExpression, parseToHtml, renderHandle, serializeHandle,
|
|
1
|
+
export { applyCommandsAndConvertToHastHandle, applyCommandsToHandle, applyCommandsToMdastHandle, compileHandle, compileMdx, convertMdastToHastHandle, createHastHandle, createMdastHandle, createMdxHastHandle, createMdxMdastHandle, dropHandle, getHandleSource, getNodeData, mdastTextContentHandle, parseEsm, parseExpression, parseToHtml, renderHandle, serializeHandle, setNodeData, textContentHandle, walkHandle, walkMdastHandle, } from "../index.js";
|
package/dist/compile.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { visitHastHandle, resolveSubscriptions } from "./hast/hast-visitor.js";
|
|
2
2
|
import { visitMdastHandle, resolveMdastSubscriptions, } from "./mdast/mdast-visitor.js";
|
|
3
|
-
import { parseToHtml, compileMdx, createHastHandle, createMdxHastHandle, renderHandle, compileHandle, applyCommandsToHandle, dropHandle, createMdastHandle, createMdxMdastHandle, applyCommandsToMdastHandle, convertMdastToHastHandle, applyCommandsAndConvertToHastHandle, getHandleSource, serializeHandle,
|
|
3
|
+
import { parseToHtml, compileMdx, createHastHandle, createMdxHastHandle, renderHandle, compileHandle, applyCommandsToHandle, dropHandle, createMdastHandle, createMdxMdastHandle, applyCommandsToMdastHandle, convertMdastToHastHandle, applyCommandsAndConvertToHastHandle, getHandleSource, serializeHandle, } from "#binding";
|
|
4
4
|
import { MdastReader } from "./mdast/mdast-reader.js";
|
|
5
5
|
import { materializeMdastTree } from "./mdast/mdast-materializer.js";
|
|
6
6
|
import { HastReader } from "./hast/hast-reader.js";
|
|
@@ -220,14 +220,14 @@ nativeFeatures) {
|
|
|
220
220
|
/** Parse Markdown source into a materialized mdast tree. */
|
|
221
221
|
export function markdownToMdast(source, options = {}) {
|
|
222
222
|
const handle = createMdastHandle(source, featuresToNative(options.features));
|
|
223
|
-
const buf =
|
|
223
|
+
const buf = serializeHandle(handle);
|
|
224
224
|
dropHandle(handle);
|
|
225
225
|
return materializeMdastTree(new MdastReader(buf));
|
|
226
226
|
}
|
|
227
227
|
/** Parse MDX source into a materialized mdast tree. */
|
|
228
228
|
export function mdxToMdast(source, options = {}) {
|
|
229
229
|
const handle = createMdxMdastHandle(source, featuresToNative(options.features));
|
|
230
|
-
const buf =
|
|
230
|
+
const buf = serializeHandle(handle);
|
|
231
231
|
dropHandle(handle);
|
|
232
232
|
return materializeMdastTree(new MdastReader(buf));
|
|
233
233
|
}
|
package/dist/hast/hast-reader.js
CHANGED
|
@@ -47,6 +47,7 @@ const FIELD = {
|
|
|
47
47
|
};
|
|
48
48
|
// "MDAR" bytes: 4d 44 41 52; read as LE u32 = 0x5241444d
|
|
49
49
|
const MAGIC = 0x5241444d;
|
|
50
|
+
const KIND_HAST = 2;
|
|
50
51
|
export class HastReader {
|
|
51
52
|
#view;
|
|
52
53
|
#header;
|
|
@@ -68,12 +69,12 @@ export class HastReader {
|
|
|
68
69
|
if (magic !== MAGIC) {
|
|
69
70
|
throw new Error(`Invalid HAST buffer: bad magic 0x${magic.toString(16)}`);
|
|
70
71
|
}
|
|
71
|
-
const
|
|
72
|
-
if (
|
|
73
|
-
throw new Error(`
|
|
72
|
+
const kind = v.getUint32(4, true);
|
|
73
|
+
if (kind !== KIND_HAST) {
|
|
74
|
+
throw new Error(`HastReader was handed a buffer of kind ${kind} (expected ${KIND_HAST}). ` +
|
|
75
|
+
`MDAST and HAST node types overlap; reading the wrong kind decodes garbage.`);
|
|
74
76
|
}
|
|
75
77
|
return {
|
|
76
|
-
version,
|
|
77
78
|
nodeStructSize: v.getUint32(8, true),
|
|
78
79
|
nodeCount: v.getUint32(12, true),
|
|
79
80
|
nodesOffset: v.getUint32(16, true),
|
package/dist/index.d.ts
CHANGED
|
@@ -11,4 +11,4 @@ export { MdastReader } from "./mdast/mdast-reader.js";
|
|
|
11
11
|
export { materializeMdastTree } from "./mdast/mdast-materializer.js";
|
|
12
12
|
export { HastReader } from "./hast/hast-reader.js";
|
|
13
13
|
export { materializeHastTree } from "./hast/hast-materializer.js";
|
|
14
|
-
export { createMdastHandle, createMdxMdastHandle, createHastHandle, createMdxHastHandle, convertMdastToHastHandle,
|
|
14
|
+
export { createMdastHandle, createMdxMdastHandle, createHastHandle, createMdxHastHandle, convertMdastToHastHandle, serializeHandle, renderHandle, compileHandle, dropHandle, applyCommandsToMdastHandle, applyCommandsAndConvertToHastHandle, getHandleSource, } from "#binding";
|
package/dist/index.js
CHANGED
|
@@ -10,4 +10,4 @@ export { MdastReader } from "./mdast/mdast-reader.js";
|
|
|
10
10
|
export { materializeMdastTree } from "./mdast/mdast-materializer.js";
|
|
11
11
|
export { HastReader } from "./hast/hast-reader.js";
|
|
12
12
|
export { materializeHastTree } from "./hast/hast-materializer.js";
|
|
13
|
-
export { createMdastHandle, createMdxMdastHandle, createHastHandle, createMdxHastHandle, convertMdastToHastHandle,
|
|
13
|
+
export { createMdastHandle, createMdxMdastHandle, createHastHandle, createMdxHastHandle, convertMdastToHastHandle, serializeHandle, renderHandle, compileHandle, dropHandle, applyCommandsToMdastHandle, applyCommandsAndConvertToHastHandle, getHandleSource, } from "#binding";
|
|
@@ -76,7 +76,7 @@ const FIELD = {
|
|
|
76
76
|
};
|
|
77
77
|
// BufferHeader field offsets (all u32, little-endian):
|
|
78
78
|
// magic: [u8; 4] @ 0
|
|
79
|
-
//
|
|
79
|
+
// kind: u32 @ 4 (1 = mdast, 2 = hast)
|
|
80
80
|
// node_struct_size: u32 @ 8
|
|
81
81
|
// node_count: u32 @ 12
|
|
82
82
|
// nodes_offset: u32 @ 16
|
|
@@ -88,6 +88,7 @@ const FIELD = {
|
|
|
88
88
|
// source_offset: u32 @ 40
|
|
89
89
|
// Total: 44 bytes
|
|
90
90
|
const MAGIC = 0x5241444d; // "MDAR" bytes [0x4d,0x44,0x41,0x52] read as little-endian u32
|
|
91
|
+
const KIND_MDAST = 1;
|
|
91
92
|
export class MdastReader {
|
|
92
93
|
#view;
|
|
93
94
|
#header;
|
|
@@ -109,12 +110,12 @@ export class MdastReader {
|
|
|
109
110
|
if (magic !== MAGIC) {
|
|
110
111
|
throw new Error(`Invalid buffer: bad magic 0x${magic.toString(16)}, expected 0x${MAGIC.toString(16)}`);
|
|
111
112
|
}
|
|
112
|
-
const
|
|
113
|
-
if (
|
|
114
|
-
throw new Error(`
|
|
113
|
+
const kind = v.getUint32(4, true);
|
|
114
|
+
if (kind !== KIND_MDAST) {
|
|
115
|
+
throw new Error(`MdastReader was handed a buffer of kind ${kind} (expected ${KIND_MDAST}). ` +
|
|
116
|
+
`MDAST and HAST node types overlap; reading the wrong kind decodes garbage.`);
|
|
115
117
|
}
|
|
116
118
|
return {
|
|
117
|
-
version,
|
|
118
119
|
nodeStructSize: v.getUint32(8, true),
|
|
119
120
|
nodeCount: v.getUint32(12, true),
|
|
120
121
|
nodesOffset: v.getUint32(16, true),
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { materializeNode, TYPE_NAMES } from "./mdast-materializer.js";
|
|
2
2
|
import { MdastReader } from "./mdast-reader.js";
|
|
3
3
|
import { CommandBuffer, classifyReturn } from "../command-buffer.js";
|
|
4
|
-
import { walkMdastHandle,
|
|
4
|
+
import { walkMdastHandle, serializeHandle, getNodeData as napiGetNodeData, mdastTextContentHandle, } from "#binding";
|
|
5
5
|
const MutationType = {
|
|
6
6
|
Replace: "replace",
|
|
7
7
|
Remove: "remove",
|
|
@@ -186,7 +186,7 @@ class MdastLazyChildResolver {
|
|
|
186
186
|
}
|
|
187
187
|
#ensure() {
|
|
188
188
|
if (!this.#reader) {
|
|
189
|
-
this.#reader = new MdastReader(
|
|
189
|
+
this.#reader = new MdastReader(serializeHandle(this.#handle));
|
|
190
190
|
}
|
|
191
191
|
return this.#reader;
|
|
192
192
|
}
|
package/dist/types.d.ts
CHANGED
package/index.d.ts
CHANGED
|
@@ -4,49 +4,55 @@
|
|
|
4
4
|
* Apply MDAST commands and convert to HAST handle in one step.
|
|
5
5
|
* The MDAST handle is consumed (emptied).
|
|
6
6
|
*/
|
|
7
|
-
export declare function applyCommandsAndConvertToHastHandle(handle:
|
|
7
|
+
export declare function applyCommandsAndConvertToHastHandle(handle: MdastHandle, commandBuf: Uint8Array): HastHandle
|
|
8
8
|
|
|
9
|
-
/** Apply a command buffer to a handle's arena in-place.
|
|
10
|
-
export declare function applyCommandsToHandle(handle:
|
|
9
|
+
/** Apply a command buffer to a HAST handle's arena in-place. */
|
|
10
|
+
export declare function applyCommandsToHandle(handle: HastHandle, commandBuf: Uint8Array): void
|
|
11
11
|
|
|
12
12
|
/** Apply a command buffer to an MDAST handle in-place. */
|
|
13
|
-
export declare function applyCommandsToMdastHandle(handle:
|
|
13
|
+
export declare function applyCommandsToMdastHandle(handle: MdastHandle, commandBuf: Uint8Array): void
|
|
14
14
|
|
|
15
|
-
/** Compile a handle's
|
|
16
|
-
export declare function compileHandle(handle:
|
|
15
|
+
/** Compile a HAST handle's arena to MDX JavaScript. Does not consume the handle. */
|
|
16
|
+
export declare function compileHandle(handle: HastHandle, options?: JsMdxOptions | undefined | null): string
|
|
17
17
|
|
|
18
18
|
/** Compile MDX source directly to JavaScript. */
|
|
19
19
|
export declare function compileMdx(source: string, options?: JsMdxOptions | undefined | null, features?: JsFeatures | undefined | null): string
|
|
20
20
|
|
|
21
21
|
/** Convert an MDAST handle to a HAST handle. The MDAST handle is consumed (emptied). */
|
|
22
|
-
export declare function convertMdastToHastHandle(handle:
|
|
22
|
+
export declare function convertMdastToHastHandle(handle: MdastHandle): HastHandle
|
|
23
23
|
|
|
24
24
|
/**
|
|
25
25
|
* Parse markdown source and convert to HAST. Returns an opaque handle.
|
|
26
26
|
* The arena stays in Rust memory, no buffer is copied to JS.
|
|
27
27
|
*/
|
|
28
|
-
export declare function createHastHandle(source: string, features?: JsFeatures | undefined | null):
|
|
28
|
+
export declare function createHastHandle(source: string, features?: JsFeatures | undefined | null): HastHandle
|
|
29
29
|
|
|
30
30
|
/** Parse markdown source into an MDAST arena handle. */
|
|
31
|
-
export declare function createMdastHandle(source: string, features?: JsFeatures | undefined | null):
|
|
31
|
+
export declare function createMdastHandle(source: string, features?: JsFeatures | undefined | null): MdastHandle
|
|
32
32
|
|
|
33
33
|
/** Parse MDX source and convert to HAST. Returns an opaque handle. */
|
|
34
|
-
export declare function createMdxHastHandle(source: string, features?: JsFeatures | undefined | null):
|
|
34
|
+
export declare function createMdxHastHandle(source: string, features?: JsFeatures | undefined | null): HastHandle
|
|
35
35
|
|
|
36
36
|
/** Parse MDX source into an MDAST arena handle. */
|
|
37
|
-
export declare function createMdxMdastHandle(source: string, features?: JsFeatures | undefined | null):
|
|
37
|
+
export declare function createMdxMdastHandle(source: string, features?: JsFeatures | undefined | null): MdastHandle
|
|
38
38
|
|
|
39
39
|
/**
|
|
40
|
-
* Release
|
|
41
|
-
*
|
|
40
|
+
* Release a handle's arena memory. The handle becomes empty but remains
|
|
41
|
+
* valid (subsequent calls are no-ops or return empty results).
|
|
42
42
|
*/
|
|
43
|
-
export declare function dropHandle(handle:
|
|
43
|
+
export declare function dropHandle(handle: AnyHandle): void
|
|
44
44
|
|
|
45
|
-
/**
|
|
46
|
-
|
|
45
|
+
/**
|
|
46
|
+
* Get the source string from a handle. Kind-agnostic: source is the
|
|
47
|
+
* original markdown/MDX input and is identical across MDAST and HAST.
|
|
48
|
+
*/
|
|
49
|
+
export declare function getHandleSource(handle: AnyHandle): string
|
|
47
50
|
|
|
48
|
-
/**
|
|
49
|
-
|
|
51
|
+
/**
|
|
52
|
+
* Read the node_data JSON blob for a node. Returns null if none is set.
|
|
53
|
+
* Works for both MDAST and HAST handles.
|
|
54
|
+
*/
|
|
55
|
+
export declare function getNodeData(handle: AnyHandle, nodeId: number): string | null
|
|
50
56
|
|
|
51
57
|
/** Feature toggles for the Markdown/MDX parser, passed from JavaScript. */
|
|
52
58
|
export interface JsFeatures {
|
|
@@ -145,7 +151,7 @@ export interface JsTextContentOptions {
|
|
|
145
151
|
* Collect the concatenated text content of an MDAST node and all its descendants.
|
|
146
152
|
* Mirrors `mdast-util-to-string`: collects value from text nodes, alt from images.
|
|
147
153
|
*/
|
|
148
|
-
export declare function mdastTextContentHandle(handle:
|
|
154
|
+
export declare function mdastTextContentHandle(handle: MdastHandle, nodeId: number, options?: JsTextContentOptions | undefined | null): string
|
|
149
155
|
|
|
150
156
|
/** Parse ESM (import/export statements) and return ESTree-compatible AST as JSON. */
|
|
151
157
|
export declare function parseEsm(source: string): string | null
|
|
@@ -159,26 +165,31 @@ export declare function parseExpression(source: string): string | null
|
|
|
159
165
|
/** Parse Markdown source and return HTML string directly. */
|
|
160
166
|
export declare function parseToHtml(source: string, features?: JsFeatures | undefined | null): string
|
|
161
167
|
|
|
162
|
-
/** Render a handle's
|
|
163
|
-
export declare function renderHandle(handle:
|
|
164
|
-
|
|
165
|
-
/** Serialize a handle's arena to a binary buffer (for fallback paths like transformRoot). */
|
|
166
|
-
export declare function serializeHandle(handle: ArenaHandle): Uint8Array
|
|
168
|
+
/** Render a HAST handle's arena to HTML. Does not consume the handle. */
|
|
169
|
+
export declare function renderHandle(handle: HastHandle): string
|
|
167
170
|
|
|
168
|
-
/**
|
|
169
|
-
|
|
171
|
+
/**
|
|
172
|
+
* Serialize a handle's arena to a binary buffer. Works for both MDAST
|
|
173
|
+
* (read-only snapshot for the JS visitor) and HAST (fallback path for
|
|
174
|
+
* `transformRoot`) — the kind tag is embedded in the buffer header.
|
|
175
|
+
*/
|
|
176
|
+
export declare function serializeHandle(handle: AnyHandle): Uint8Array
|
|
170
177
|
|
|
171
|
-
/**
|
|
172
|
-
|
|
178
|
+
/**
|
|
179
|
+
* Set the `data` blob (JSON bytes) for a node. Works for both MDAST and
|
|
180
|
+
* HAST handles — `node_data` is a per-node JSON blob with no kind-specific
|
|
181
|
+
* shape on the Rust side.
|
|
182
|
+
*/
|
|
183
|
+
export declare function setNodeData(handle: AnyHandle, nodeId: number, json: Uint8Array): void
|
|
173
184
|
|
|
174
185
|
/**
|
|
175
186
|
* Collect the concatenated text content of a HAST node and all its descendants.
|
|
176
187
|
* Walks entirely in Rust, no per-child NAPI round-trips.
|
|
177
188
|
*/
|
|
178
|
-
export declare function textContentHandle(handle:
|
|
189
|
+
export declare function textContentHandle(handle: HastHandle, nodeId: number): string
|
|
179
190
|
|
|
180
|
-
/** Walk a handle's arena and return matched nodes as a flat binary buffer. */
|
|
181
|
-
export declare function walkHandle(handle:
|
|
191
|
+
/** Walk a HAST handle's arena and return matched nodes as a flat binary buffer. */
|
|
192
|
+
export declare function walkHandle(handle: HastHandle, subscriptions: Array<JsSubscription>): Uint8Array
|
|
182
193
|
|
|
183
194
|
/** Walk an MDAST handle's arena and return matched nodes as a flat binary buffer. */
|
|
184
|
-
export declare function walkMdastHandle(handle:
|
|
195
|
+
export declare function walkMdastHandle(handle: MdastHandle, subscriptions: Array<JsSubscription>): Uint8Array
|
package/index.js
CHANGED
|
@@ -81,8 +81,8 @@ function requireNative() {
|
|
|
81
81
|
try {
|
|
82
82
|
const binding = require('@bruits/satteri-android-arm64')
|
|
83
83
|
const bindingPackageVersion = require('@bruits/satteri-android-arm64/package.json').version
|
|
84
|
-
if (bindingPackageVersion !== '0.3.
|
|
85
|
-
throw new Error(`Native binding package version mismatch, expected 0.3.
|
|
84
|
+
if (bindingPackageVersion !== '0.3.4' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
85
|
+
throw new Error(`Native binding package version mismatch, expected 0.3.4 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
86
86
|
}
|
|
87
87
|
return binding
|
|
88
88
|
} catch (e) {
|
|
@@ -97,8 +97,8 @@ function requireNative() {
|
|
|
97
97
|
try {
|
|
98
98
|
const binding = require('@bruits/satteri-android-arm-eabi')
|
|
99
99
|
const bindingPackageVersion = require('@bruits/satteri-android-arm-eabi/package.json').version
|
|
100
|
-
if (bindingPackageVersion !== '0.3.
|
|
101
|
-
throw new Error(`Native binding package version mismatch, expected 0.3.
|
|
100
|
+
if (bindingPackageVersion !== '0.3.4' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
101
|
+
throw new Error(`Native binding package version mismatch, expected 0.3.4 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
102
102
|
}
|
|
103
103
|
return binding
|
|
104
104
|
} catch (e) {
|
|
@@ -118,8 +118,8 @@ function requireNative() {
|
|
|
118
118
|
try {
|
|
119
119
|
const binding = require('@bruits/satteri-win32-x64-gnu')
|
|
120
120
|
const bindingPackageVersion = require('@bruits/satteri-win32-x64-gnu/package.json').version
|
|
121
|
-
if (bindingPackageVersion !== '0.3.
|
|
122
|
-
throw new Error(`Native binding package version mismatch, expected 0.3.
|
|
121
|
+
if (bindingPackageVersion !== '0.3.4' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
122
|
+
throw new Error(`Native binding package version mismatch, expected 0.3.4 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
123
123
|
}
|
|
124
124
|
return binding
|
|
125
125
|
} catch (e) {
|
|
@@ -134,8 +134,8 @@ function requireNative() {
|
|
|
134
134
|
try {
|
|
135
135
|
const binding = require('@bruits/satteri-win32-x64-msvc')
|
|
136
136
|
const bindingPackageVersion = require('@bruits/satteri-win32-x64-msvc/package.json').version
|
|
137
|
-
if (bindingPackageVersion !== '0.3.
|
|
138
|
-
throw new Error(`Native binding package version mismatch, expected 0.3.
|
|
137
|
+
if (bindingPackageVersion !== '0.3.4' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
138
|
+
throw new Error(`Native binding package version mismatch, expected 0.3.4 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
139
139
|
}
|
|
140
140
|
return binding
|
|
141
141
|
} catch (e) {
|
|
@@ -151,8 +151,8 @@ function requireNative() {
|
|
|
151
151
|
try {
|
|
152
152
|
const binding = require('@bruits/satteri-win32-ia32-msvc')
|
|
153
153
|
const bindingPackageVersion = require('@bruits/satteri-win32-ia32-msvc/package.json').version
|
|
154
|
-
if (bindingPackageVersion !== '0.3.
|
|
155
|
-
throw new Error(`Native binding package version mismatch, expected 0.3.
|
|
154
|
+
if (bindingPackageVersion !== '0.3.4' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
155
|
+
throw new Error(`Native binding package version mismatch, expected 0.3.4 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
156
156
|
}
|
|
157
157
|
return binding
|
|
158
158
|
} catch (e) {
|
|
@@ -167,8 +167,8 @@ function requireNative() {
|
|
|
167
167
|
try {
|
|
168
168
|
const binding = require('@bruits/satteri-win32-arm64-msvc')
|
|
169
169
|
const bindingPackageVersion = require('@bruits/satteri-win32-arm64-msvc/package.json').version
|
|
170
|
-
if (bindingPackageVersion !== '0.3.
|
|
171
|
-
throw new Error(`Native binding package version mismatch, expected 0.3.
|
|
170
|
+
if (bindingPackageVersion !== '0.3.4' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
171
|
+
throw new Error(`Native binding package version mismatch, expected 0.3.4 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
172
172
|
}
|
|
173
173
|
return binding
|
|
174
174
|
} catch (e) {
|
|
@@ -186,8 +186,8 @@ function requireNative() {
|
|
|
186
186
|
try {
|
|
187
187
|
const binding = require('@bruits/satteri-darwin-universal')
|
|
188
188
|
const bindingPackageVersion = require('@bruits/satteri-darwin-universal/package.json').version
|
|
189
|
-
if (bindingPackageVersion !== '0.3.
|
|
190
|
-
throw new Error(`Native binding package version mismatch, expected 0.3.
|
|
189
|
+
if (bindingPackageVersion !== '0.3.4' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
190
|
+
throw new Error(`Native binding package version mismatch, expected 0.3.4 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
191
191
|
}
|
|
192
192
|
return binding
|
|
193
193
|
} catch (e) {
|
|
@@ -202,8 +202,8 @@ function requireNative() {
|
|
|
202
202
|
try {
|
|
203
203
|
const binding = require('@bruits/satteri-darwin-x64')
|
|
204
204
|
const bindingPackageVersion = require('@bruits/satteri-darwin-x64/package.json').version
|
|
205
|
-
if (bindingPackageVersion !== '0.3.
|
|
206
|
-
throw new Error(`Native binding package version mismatch, expected 0.3.
|
|
205
|
+
if (bindingPackageVersion !== '0.3.4' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
206
|
+
throw new Error(`Native binding package version mismatch, expected 0.3.4 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
207
207
|
}
|
|
208
208
|
return binding
|
|
209
209
|
} catch (e) {
|
|
@@ -218,8 +218,8 @@ function requireNative() {
|
|
|
218
218
|
try {
|
|
219
219
|
const binding = require('@bruits/satteri-darwin-arm64')
|
|
220
220
|
const bindingPackageVersion = require('@bruits/satteri-darwin-arm64/package.json').version
|
|
221
|
-
if (bindingPackageVersion !== '0.3.
|
|
222
|
-
throw new Error(`Native binding package version mismatch, expected 0.3.
|
|
221
|
+
if (bindingPackageVersion !== '0.3.4' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
222
|
+
throw new Error(`Native binding package version mismatch, expected 0.3.4 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
223
223
|
}
|
|
224
224
|
return binding
|
|
225
225
|
} catch (e) {
|
|
@@ -238,8 +238,8 @@ function requireNative() {
|
|
|
238
238
|
try {
|
|
239
239
|
const binding = require('@bruits/satteri-freebsd-x64')
|
|
240
240
|
const bindingPackageVersion = require('@bruits/satteri-freebsd-x64/package.json').version
|
|
241
|
-
if (bindingPackageVersion !== '0.3.
|
|
242
|
-
throw new Error(`Native binding package version mismatch, expected 0.3.
|
|
241
|
+
if (bindingPackageVersion !== '0.3.4' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
242
|
+
throw new Error(`Native binding package version mismatch, expected 0.3.4 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
243
243
|
}
|
|
244
244
|
return binding
|
|
245
245
|
} catch (e) {
|
|
@@ -254,8 +254,8 @@ function requireNative() {
|
|
|
254
254
|
try {
|
|
255
255
|
const binding = require('@bruits/satteri-freebsd-arm64')
|
|
256
256
|
const bindingPackageVersion = require('@bruits/satteri-freebsd-arm64/package.json').version
|
|
257
|
-
if (bindingPackageVersion !== '0.3.
|
|
258
|
-
throw new Error(`Native binding package version mismatch, expected 0.3.
|
|
257
|
+
if (bindingPackageVersion !== '0.3.4' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
258
|
+
throw new Error(`Native binding package version mismatch, expected 0.3.4 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
259
259
|
}
|
|
260
260
|
return binding
|
|
261
261
|
} catch (e) {
|
|
@@ -275,8 +275,8 @@ function requireNative() {
|
|
|
275
275
|
try {
|
|
276
276
|
const binding = require('@bruits/satteri-linux-x64-musl')
|
|
277
277
|
const bindingPackageVersion = require('@bruits/satteri-linux-x64-musl/package.json').version
|
|
278
|
-
if (bindingPackageVersion !== '0.3.
|
|
279
|
-
throw new Error(`Native binding package version mismatch, expected 0.3.
|
|
278
|
+
if (bindingPackageVersion !== '0.3.4' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
279
|
+
throw new Error(`Native binding package version mismatch, expected 0.3.4 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
280
280
|
}
|
|
281
281
|
return binding
|
|
282
282
|
} catch (e) {
|
|
@@ -291,8 +291,8 @@ function requireNative() {
|
|
|
291
291
|
try {
|
|
292
292
|
const binding = require('@bruits/satteri-linux-x64-gnu')
|
|
293
293
|
const bindingPackageVersion = require('@bruits/satteri-linux-x64-gnu/package.json').version
|
|
294
|
-
if (bindingPackageVersion !== '0.3.
|
|
295
|
-
throw new Error(`Native binding package version mismatch, expected 0.3.
|
|
294
|
+
if (bindingPackageVersion !== '0.3.4' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
295
|
+
throw new Error(`Native binding package version mismatch, expected 0.3.4 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
296
296
|
}
|
|
297
297
|
return binding
|
|
298
298
|
} catch (e) {
|
|
@@ -309,8 +309,8 @@ function requireNative() {
|
|
|
309
309
|
try {
|
|
310
310
|
const binding = require('@bruits/satteri-linux-arm64-musl')
|
|
311
311
|
const bindingPackageVersion = require('@bruits/satteri-linux-arm64-musl/package.json').version
|
|
312
|
-
if (bindingPackageVersion !== '0.3.
|
|
313
|
-
throw new Error(`Native binding package version mismatch, expected 0.3.
|
|
312
|
+
if (bindingPackageVersion !== '0.3.4' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
313
|
+
throw new Error(`Native binding package version mismatch, expected 0.3.4 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
314
314
|
}
|
|
315
315
|
return binding
|
|
316
316
|
} catch (e) {
|
|
@@ -325,8 +325,8 @@ function requireNative() {
|
|
|
325
325
|
try {
|
|
326
326
|
const binding = require('@bruits/satteri-linux-arm64-gnu')
|
|
327
327
|
const bindingPackageVersion = require('@bruits/satteri-linux-arm64-gnu/package.json').version
|
|
328
|
-
if (bindingPackageVersion !== '0.3.
|
|
329
|
-
throw new Error(`Native binding package version mismatch, expected 0.3.
|
|
328
|
+
if (bindingPackageVersion !== '0.3.4' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
329
|
+
throw new Error(`Native binding package version mismatch, expected 0.3.4 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
330
330
|
}
|
|
331
331
|
return binding
|
|
332
332
|
} catch (e) {
|
|
@@ -343,8 +343,8 @@ function requireNative() {
|
|
|
343
343
|
try {
|
|
344
344
|
const binding = require('@bruits/satteri-linux-arm-musleabihf')
|
|
345
345
|
const bindingPackageVersion = require('@bruits/satteri-linux-arm-musleabihf/package.json').version
|
|
346
|
-
if (bindingPackageVersion !== '0.3.
|
|
347
|
-
throw new Error(`Native binding package version mismatch, expected 0.3.
|
|
346
|
+
if (bindingPackageVersion !== '0.3.4' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
347
|
+
throw new Error(`Native binding package version mismatch, expected 0.3.4 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
348
348
|
}
|
|
349
349
|
return binding
|
|
350
350
|
} catch (e) {
|
|
@@ -359,8 +359,8 @@ function requireNative() {
|
|
|
359
359
|
try {
|
|
360
360
|
const binding = require('@bruits/satteri-linux-arm-gnueabihf')
|
|
361
361
|
const bindingPackageVersion = require('@bruits/satteri-linux-arm-gnueabihf/package.json').version
|
|
362
|
-
if (bindingPackageVersion !== '0.3.
|
|
363
|
-
throw new Error(`Native binding package version mismatch, expected 0.3.
|
|
362
|
+
if (bindingPackageVersion !== '0.3.4' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
363
|
+
throw new Error(`Native binding package version mismatch, expected 0.3.4 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
364
364
|
}
|
|
365
365
|
return binding
|
|
366
366
|
} catch (e) {
|
|
@@ -377,8 +377,8 @@ function requireNative() {
|
|
|
377
377
|
try {
|
|
378
378
|
const binding = require('@bruits/satteri-linux-loong64-musl')
|
|
379
379
|
const bindingPackageVersion = require('@bruits/satteri-linux-loong64-musl/package.json').version
|
|
380
|
-
if (bindingPackageVersion !== '0.3.
|
|
381
|
-
throw new Error(`Native binding package version mismatch, expected 0.3.
|
|
380
|
+
if (bindingPackageVersion !== '0.3.4' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
381
|
+
throw new Error(`Native binding package version mismatch, expected 0.3.4 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
382
382
|
}
|
|
383
383
|
return binding
|
|
384
384
|
} catch (e) {
|
|
@@ -393,8 +393,8 @@ function requireNative() {
|
|
|
393
393
|
try {
|
|
394
394
|
const binding = require('@bruits/satteri-linux-loong64-gnu')
|
|
395
395
|
const bindingPackageVersion = require('@bruits/satteri-linux-loong64-gnu/package.json').version
|
|
396
|
-
if (bindingPackageVersion !== '0.3.
|
|
397
|
-
throw new Error(`Native binding package version mismatch, expected 0.3.
|
|
396
|
+
if (bindingPackageVersion !== '0.3.4' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
397
|
+
throw new Error(`Native binding package version mismatch, expected 0.3.4 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
398
398
|
}
|
|
399
399
|
return binding
|
|
400
400
|
} catch (e) {
|
|
@@ -411,8 +411,8 @@ function requireNative() {
|
|
|
411
411
|
try {
|
|
412
412
|
const binding = require('@bruits/satteri-linux-riscv64-musl')
|
|
413
413
|
const bindingPackageVersion = require('@bruits/satteri-linux-riscv64-musl/package.json').version
|
|
414
|
-
if (bindingPackageVersion !== '0.3.
|
|
415
|
-
throw new Error(`Native binding package version mismatch, expected 0.3.
|
|
414
|
+
if (bindingPackageVersion !== '0.3.4' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
415
|
+
throw new Error(`Native binding package version mismatch, expected 0.3.4 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
416
416
|
}
|
|
417
417
|
return binding
|
|
418
418
|
} catch (e) {
|
|
@@ -427,8 +427,8 @@ function requireNative() {
|
|
|
427
427
|
try {
|
|
428
428
|
const binding = require('@bruits/satteri-linux-riscv64-gnu')
|
|
429
429
|
const bindingPackageVersion = require('@bruits/satteri-linux-riscv64-gnu/package.json').version
|
|
430
|
-
if (bindingPackageVersion !== '0.3.
|
|
431
|
-
throw new Error(`Native binding package version mismatch, expected 0.3.
|
|
430
|
+
if (bindingPackageVersion !== '0.3.4' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
431
|
+
throw new Error(`Native binding package version mismatch, expected 0.3.4 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
432
432
|
}
|
|
433
433
|
return binding
|
|
434
434
|
} catch (e) {
|
|
@@ -444,8 +444,8 @@ function requireNative() {
|
|
|
444
444
|
try {
|
|
445
445
|
const binding = require('@bruits/satteri-linux-ppc64-gnu')
|
|
446
446
|
const bindingPackageVersion = require('@bruits/satteri-linux-ppc64-gnu/package.json').version
|
|
447
|
-
if (bindingPackageVersion !== '0.3.
|
|
448
|
-
throw new Error(`Native binding package version mismatch, expected 0.3.
|
|
447
|
+
if (bindingPackageVersion !== '0.3.4' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
448
|
+
throw new Error(`Native binding package version mismatch, expected 0.3.4 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
449
449
|
}
|
|
450
450
|
return binding
|
|
451
451
|
} catch (e) {
|
|
@@ -460,8 +460,8 @@ function requireNative() {
|
|
|
460
460
|
try {
|
|
461
461
|
const binding = require('@bruits/satteri-linux-s390x-gnu')
|
|
462
462
|
const bindingPackageVersion = require('@bruits/satteri-linux-s390x-gnu/package.json').version
|
|
463
|
-
if (bindingPackageVersion !== '0.3.
|
|
464
|
-
throw new Error(`Native binding package version mismatch, expected 0.3.
|
|
463
|
+
if (bindingPackageVersion !== '0.3.4' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
464
|
+
throw new Error(`Native binding package version mismatch, expected 0.3.4 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
465
465
|
}
|
|
466
466
|
return binding
|
|
467
467
|
} catch (e) {
|
|
@@ -480,8 +480,8 @@ function requireNative() {
|
|
|
480
480
|
try {
|
|
481
481
|
const binding = require('@bruits/satteri-openharmony-arm64')
|
|
482
482
|
const bindingPackageVersion = require('@bruits/satteri-openharmony-arm64/package.json').version
|
|
483
|
-
if (bindingPackageVersion !== '0.3.
|
|
484
|
-
throw new Error(`Native binding package version mismatch, expected 0.3.
|
|
483
|
+
if (bindingPackageVersion !== '0.3.4' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
484
|
+
throw new Error(`Native binding package version mismatch, expected 0.3.4 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
485
485
|
}
|
|
486
486
|
return binding
|
|
487
487
|
} catch (e) {
|
|
@@ -496,8 +496,8 @@ function requireNative() {
|
|
|
496
496
|
try {
|
|
497
497
|
const binding = require('@bruits/satteri-openharmony-x64')
|
|
498
498
|
const bindingPackageVersion = require('@bruits/satteri-openharmony-x64/package.json').version
|
|
499
|
-
if (bindingPackageVersion !== '0.3.
|
|
500
|
-
throw new Error(`Native binding package version mismatch, expected 0.3.
|
|
499
|
+
if (bindingPackageVersion !== '0.3.4' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
500
|
+
throw new Error(`Native binding package version mismatch, expected 0.3.4 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
501
501
|
}
|
|
502
502
|
return binding
|
|
503
503
|
} catch (e) {
|
|
@@ -512,8 +512,8 @@ function requireNative() {
|
|
|
512
512
|
try {
|
|
513
513
|
const binding = require('@bruits/satteri-openharmony-arm')
|
|
514
514
|
const bindingPackageVersion = require('@bruits/satteri-openharmony-arm/package.json').version
|
|
515
|
-
if (bindingPackageVersion !== '0.3.
|
|
516
|
-
throw new Error(`Native binding package version mismatch, expected 0.3.
|
|
515
|
+
if (bindingPackageVersion !== '0.3.4' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
516
|
+
throw new Error(`Native binding package version mismatch, expected 0.3.4 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
517
517
|
}
|
|
518
518
|
return binding
|
|
519
519
|
} catch (e) {
|
|
@@ -579,7 +579,7 @@ if (!nativeBinding) {
|
|
|
579
579
|
throw new Error(`Failed to load native binding`)
|
|
580
580
|
}
|
|
581
581
|
|
|
582
|
-
const { applyCommandsAndConvertToHastHandle, applyCommandsToHandle, applyCommandsToMdastHandle, compileHandle, compileMdx, convertMdastToHastHandle, createHastHandle, createMdastHandle, createMdxHastHandle, createMdxMdastHandle, dropHandle, getHandleSource, getNodeData, mdastTextContentHandle, parseEsm, parseExpression, parseToHtml, renderHandle, serializeHandle,
|
|
582
|
+
const { applyCommandsAndConvertToHastHandle, applyCommandsToHandle, applyCommandsToMdastHandle, compileHandle, compileMdx, convertMdastToHastHandle, createHastHandle, createMdastHandle, createMdxHastHandle, createMdxMdastHandle, dropHandle, getHandleSource, getNodeData, mdastTextContentHandle, parseEsm, parseExpression, parseToHtml, renderHandle, serializeHandle, setNodeData, textContentHandle, walkHandle, walkMdastHandle } = nativeBinding
|
|
583
583
|
export { applyCommandsAndConvertToHastHandle }
|
|
584
584
|
export { applyCommandsToHandle }
|
|
585
585
|
export { applyCommandsToMdastHandle }
|
|
@@ -599,7 +599,6 @@ export { parseExpression }
|
|
|
599
599
|
export { parseToHtml }
|
|
600
600
|
export { renderHandle }
|
|
601
601
|
export { serializeHandle }
|
|
602
|
-
export { serializeMdastHandle }
|
|
603
602
|
export { setNodeData }
|
|
604
603
|
export { textContentHandle }
|
|
605
604
|
export { walkHandle }
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "satteri",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.5",
|
|
4
4
|
"description": "High-performance Markdown and MDX processing",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"@types/unist": "^3.0.3"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@codspeed/vitest-plugin": "^5.
|
|
42
|
+
"@codspeed/vitest-plugin": "^5.4.0",
|
|
43
43
|
"@emnapi/core": "^1.9.1",
|
|
44
44
|
"@emnapi/runtime": "^1.9.1",
|
|
45
45
|
"@mdx-js/mdx": "^3.1.1",
|
|
@@ -78,11 +78,11 @@
|
|
|
78
78
|
]
|
|
79
79
|
},
|
|
80
80
|
"optionalDependencies": {
|
|
81
|
-
"@bruits/satteri-linux-x64-gnu": "0.3.
|
|
82
|
-
"@bruits/satteri-darwin-x64": "0.3.
|
|
83
|
-
"@bruits/satteri-darwin-arm64": "0.3.
|
|
84
|
-
"@bruits/satteri-win32-x64-msvc": "0.3.
|
|
85
|
-
"@bruits/satteri-wasm32-wasi": "0.3.
|
|
81
|
+
"@bruits/satteri-linux-x64-gnu": "0.3.5",
|
|
82
|
+
"@bruits/satteri-darwin-x64": "0.3.5",
|
|
83
|
+
"@bruits/satteri-darwin-arm64": "0.3.5",
|
|
84
|
+
"@bruits/satteri-win32-x64-msvc": "0.3.5",
|
|
85
|
+
"@bruits/satteri-wasm32-wasi": "0.3.5"
|
|
86
86
|
},
|
|
87
87
|
"scripts": {
|
|
88
88
|
"build:wasm": "napi build --manifest-path ../../crates/satteri-napi-binding/Cargo.toml --output-dir . --platform --release --esm --strip --target wasm32-wasip1-threads",
|
|
@@ -76,7 +76,6 @@ export const parseExpression = __napiModule.exports.parseExpression
|
|
|
76
76
|
export const parseToHtml = __napiModule.exports.parseToHtml
|
|
77
77
|
export const renderHandle = __napiModule.exports.renderHandle
|
|
78
78
|
export const serializeHandle = __napiModule.exports.serializeHandle
|
|
79
|
-
export const serializeMdastHandle = __napiModule.exports.serializeMdastHandle
|
|
80
79
|
export const setNodeData = __napiModule.exports.setNodeData
|
|
81
80
|
export const textContentHandle = __napiModule.exports.textContentHandle
|
|
82
81
|
export const walkHandle = __napiModule.exports.walkHandle
|
package/satteri_napi.wasi.cjs
CHANGED
|
@@ -127,7 +127,6 @@ module.exports.parseExpression = __napiModule.exports.parseExpression
|
|
|
127
127
|
module.exports.parseToHtml = __napiModule.exports.parseToHtml
|
|
128
128
|
module.exports.renderHandle = __napiModule.exports.renderHandle
|
|
129
129
|
module.exports.serializeHandle = __napiModule.exports.serializeHandle
|
|
130
|
-
module.exports.serializeMdastHandle = __napiModule.exports.serializeMdastHandle
|
|
131
130
|
module.exports.setNodeData = __napiModule.exports.setNodeData
|
|
132
131
|
module.exports.textContentHandle = __napiModule.exports.textContentHandle
|
|
133
132
|
module.exports.walkHandle = __napiModule.exports.walkHandle
|