@json-eval-rs/bundler 0.0.68 → 0.0.69

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@json-eval-rs/bundler",
3
- "version": "0.0.68",
3
+ "version": "0.0.69",
4
4
  "description": "JSON Eval RS for bundlers (Webpack, Vite, Next.js, etc.) with ergonomic API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -4,14 +4,14 @@
4
4
  * Get the library version
5
5
  */
6
6
  export function getVersion(): string;
7
- /**
8
- * Get library version (alias)
9
- */
10
- export function version(): string;
11
7
  /**
12
8
  * Initialize the library (sets up panic hook)
13
9
  */
14
10
  export function init(): void;
11
+ /**
12
+ * Get library version (alias)
13
+ */
14
+ export function version(): string;
15
15
  /**
16
16
  * WebAssembly wrapper for JSONEval
17
17
  */
@@ -173,6 +173,13 @@ export function getVersion() {
173
173
  }
174
174
  }
175
175
 
176
+ /**
177
+ * Initialize the library (sets up panic hook)
178
+ */
179
+ export function init() {
180
+ wasm.init();
181
+ }
182
+
176
183
  /**
177
184
  * Get library version (alias)
178
185
  * @returns {string}
@@ -194,13 +201,6 @@ export function version() {
194
201
  }
195
202
  }
196
203
 
197
- /**
198
- * Initialize the library (sets up panic hook)
199
- */
200
- export function init() {
201
- wasm.init();
202
- }
203
-
204
204
  function passArray8ToWasm0(arg, malloc) {
205
205
  const ptr = malloc(arg.length * 1, 1) >>> 0;
206
206
  getUint8ArrayMemory0().set(arg, ptr / 1);
@@ -2236,7 +2236,7 @@ export function __wbg_getTime_6bb3f64e0f18f817(arg0) {
2236
2236
  return ret;
2237
2237
  };
2238
2238
 
2239
- export function __wbg_log_169af8438f961689(arg0, arg1) {
2239
+ export function __wbg_log_aa26c2b8fafd22f1(arg0, arg1) {
2240
2240
  console.log(getStringFromWasm0(arg0, arg1));
2241
2241
  };
2242
2242
 
Binary file