@astral-sh/ruff-wasm-web 0.15.0 → 0.15.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/package.json +1 -1
- package/ruff_wasm.d.ts +1 -1
- package/ruff_wasm.js +5 -4
- package/ruff_wasm_bg.wasm +0 -0
package/package.json
CHANGED
package/ruff_wasm.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/* eslint-disable */
|
|
3
|
+
export function run(): void;
|
|
3
4
|
/**
|
|
4
5
|
* Initializes the logger with the given log level.
|
|
5
6
|
*
|
|
@@ -7,7 +8,6 @@
|
|
|
7
8
|
* If this function is called more than once.
|
|
8
9
|
*/
|
|
9
10
|
export function initLogging(level: LogLevel): void;
|
|
10
|
-
export function run(): void;
|
|
11
11
|
export enum LogLevel {
|
|
12
12
|
Trace = 0,
|
|
13
13
|
Debug = 1,
|
package/ruff_wasm.js
CHANGED
|
@@ -181,6 +181,11 @@ function getArrayU8FromWasm0(ptr, len) {
|
|
|
181
181
|
ptr = ptr >>> 0;
|
|
182
182
|
return getUint8ArrayMemory0().subarray(ptr / 1, ptr / 1 + len);
|
|
183
183
|
}
|
|
184
|
+
|
|
185
|
+
export function run() {
|
|
186
|
+
wasm.run();
|
|
187
|
+
}
|
|
188
|
+
|
|
184
189
|
/**
|
|
185
190
|
* Initializes the logger with the given log level.
|
|
186
191
|
*
|
|
@@ -192,10 +197,6 @@ export function initLogging(level) {
|
|
|
192
197
|
wasm.initLogging(level);
|
|
193
198
|
}
|
|
194
199
|
|
|
195
|
-
export function run() {
|
|
196
|
-
wasm.run();
|
|
197
|
-
}
|
|
198
|
-
|
|
199
200
|
function takeFromExternrefTable0(idx) {
|
|
200
201
|
const value = wasm.__wbindgen_externrefs.get(idx);
|
|
201
202
|
wasm.__externref_table_dealloc(idx);
|
package/ruff_wasm_bg.wasm
CHANGED
|
Binary file
|