@supraio/client-daemon-js 0.0.0-jvmaster.366 → 0.0.0-jvmaster.366-jvmaster.392

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/daemon.html CHANGED
@@ -4,6 +4,6 @@
4
4
  <title>Supra daemon</title>
5
5
  </head>
6
6
  <body>
7
- <script type="text/javascript" src="daemon.js?v=0.0.0-jvmaster.366"></script>
7
+ <script type="text/javascript" src="daemon.js?v=0.0.0-jvmaster.366-jvmaster.392"></script>
8
8
  </body>
9
9
  </html>
package/daemon.js CHANGED
@@ -17913,7 +17913,7 @@
17913
17913
  }
17914
17914
 
17915
17915
  // daemon/plain.ts
17916
- var DAEMON_JS_URL = "supra-client-daemon.js?v=0.0.0-jvmaster.366";
17916
+ var DAEMON_JS_URL = "supra-client-daemon.js?v=0.0.0-jvmaster.366-jvmaster.392";
17917
17917
  async function startPlainDaemon() {
17918
17918
  const fs = await initBrowserFS();
17919
17919
  window.fs = fs;
@@ -17924,7 +17924,7 @@
17924
17924
  }
17925
17925
 
17926
17926
  // daemon/wasm.ts
17927
- var DAEMON_WASM_URL = "supra-client-daemon.wasm?v=0.0.0-jvmaster.366";
17927
+ var DAEMON_WASM_URL = "supra-client-daemon.wasm?v=0.0.0-jvmaster.366-jvmaster.392";
17928
17928
  async function startWasmDaemon() {
17929
17929
  await initGoEnvironment();
17930
17930
  await startGoDaemon();
@@ -17951,10 +17951,8 @@
17951
17951
  // sdk.ts
17952
17952
  async function startDaemon(options) {
17953
17953
  if (shouldUsePlainJS(options)) {
17954
- console.log("ASDF[TS] startDaemon: starting plain daemon");
17955
17954
  startPlainDaemon();
17956
17955
  } else {
17957
- console.log("ASDF[TS] startDaemon: starting wasm daemon");
17958
17956
  startWasmDaemon();
17959
17957
  }
17960
17958
  }