@rkat/web 0.4.4 → 0.4.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.
Files changed (2) hide show
  1. package/dist/runtime.js +1 -1
  2. package/package.json +2 -2
package/dist/runtime.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import { Mob } from './mob.js';
2
2
  import { Session } from './session.js';
3
3
  /** Expected WASM runtime version — must match the compiled binary. */
4
- const EXPECTED_VERSION = '0.4.4';
4
+ const EXPECTED_VERSION = '0.4.5';
5
5
  /**
6
6
  * Convert a camelCase config object to the snake_case expected by WASM.
7
7
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rkat/web",
3
- "version": "0.4.4",
3
+ "version": "0.4.5",
4
4
  "description": "Browser SDK for Meerkat agent runtime (WASM)",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -23,7 +23,7 @@
23
23
  "proxy"
24
24
  ],
25
25
  "scripts": {
26
- "build:wasm": "RUSTFLAGS='--cfg getrandom_backend=\"wasm_js\"' wasm-pack build ../../meerkat-web-runtime --target web --out-dir ../../sdks/web/wasm",
26
+ "build:wasm": "RUSTFLAGS='--cfg getrandom_backend=\"wasm_js\"' wasm-pack build ../../meerkat-web-runtime --target web --out-dir ../../sdks/web/wasm && rm -f wasm/.gitignore",
27
27
  "build:ts": "tsc",
28
28
  "build": "npm run build:wasm && npm run build:ts",
29
29
  "prepublishOnly": "npm run build",