@rerun-io/web-viewer 0.14.1 → 0.15.0-alpha.4

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/README.md CHANGED
@@ -41,7 +41,7 @@ viewer.stop();
41
41
  ```
42
42
 
43
43
  The `rrd` in the snippet above should be a URL pointing to either:
44
- - A hosted `.rrd` file, such as <https://app.rerun.io/version/0.14.1/examples/dna.rrd>
44
+ - A hosted `.rrd` file, such as <https://app.rerun.io/version/0.15.0-alpha.4/examples/dna.rrd>
45
45
  - A WebSocket connection to the SDK opened via the [`serve`](https://www.rerun.io/docs/reference/sdk-operating-modes#serve) API
46
46
 
47
47
  If `rrd` is not set, the viewer will display the same welcome screen as <https://app.rerun.io>.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rerun-io/web-viewer",
3
- "version": "0.14.1",
3
+ "version": "0.15.0-alpha.4",
4
4
  "description": "Embed the Rerun web viewer in your app",
5
5
  "licenses": [
6
6
  {
@@ -11,7 +11,7 @@
11
11
  }
12
12
  ],
13
13
  "scripts": {
14
- "build:wasm": "cargo run -p re_build_web_viewer -- --release --module -o rerun_js/web-viewer",
14
+ "build:wasm": "cargo run -p re_build_web_viewer -- --release -g --module -o rerun_js/web-viewer",
15
15
  "build:wasm:debug": "cargo run -p re_build_web_viewer -- --debug --module -o rerun_js/web-viewer",
16
16
  "build:types": "tsc --noEmit && dts-buddy",
17
17
  "build": "npm run build:wasm && npm run build:types"