rumdl-wasm 0.0.191 → 0.0.193
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/package.json +1 -1
- package/rumdl_lib.d.ts +4 -4
- package/rumdl_lib.js +7 -7
- package/rumdl_lib_bg.wasm +0 -0
package/package.json
CHANGED
package/rumdl_lib.d.ts
CHANGED
|
@@ -4,10 +4,6 @@
|
|
|
4
4
|
* Get the rumdl version
|
|
5
5
|
*/
|
|
6
6
|
export function get_version(): string;
|
|
7
|
-
/**
|
|
8
|
-
* Initialize the WASM module with better panic messages
|
|
9
|
-
*/
|
|
10
|
-
export function init(): void;
|
|
11
7
|
/**
|
|
12
8
|
* Get list of available rules as JSON
|
|
13
9
|
*
|
|
@@ -16,6 +12,10 @@ export function init(): void;
|
|
|
16
12
|
* - `description`: Rule description
|
|
17
13
|
*/
|
|
18
14
|
export function get_available_rules(): string;
|
|
15
|
+
/**
|
|
16
|
+
* Initialize the WASM module with better panic messages
|
|
17
|
+
*/
|
|
18
|
+
export function init(): void;
|
|
19
19
|
/**
|
|
20
20
|
* A markdown linter with configuration
|
|
21
21
|
*
|
package/rumdl_lib.js
CHANGED
|
@@ -224,13 +224,6 @@ export function get_version() {
|
|
|
224
224
|
}
|
|
225
225
|
}
|
|
226
226
|
|
|
227
|
-
/**
|
|
228
|
-
* Initialize the WASM module with better panic messages
|
|
229
|
-
*/
|
|
230
|
-
export function init() {
|
|
231
|
-
wasm.init();
|
|
232
|
-
}
|
|
233
|
-
|
|
234
227
|
/**
|
|
235
228
|
* Get list of available rules as JSON
|
|
236
229
|
*
|
|
@@ -256,6 +249,13 @@ export function get_available_rules() {
|
|
|
256
249
|
}
|
|
257
250
|
}
|
|
258
251
|
|
|
252
|
+
/**
|
|
253
|
+
* Initialize the WASM module with better panic messages
|
|
254
|
+
*/
|
|
255
|
+
export function init() {
|
|
256
|
+
wasm.init();
|
|
257
|
+
}
|
|
258
|
+
|
|
259
259
|
const LinterFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
260
260
|
? { register: () => {}, unregister: () => {} }
|
|
261
261
|
: new FinalizationRegistry(ptr => wasm.__wbg_linter_free(ptr >>> 0, 1));
|
package/rumdl_lib_bg.wasm
CHANGED
|
Binary file
|