smoldot 2.0.10 → 2.0.12
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 +1 -1
- package/dist/cjs/internals/bytecode/wasm0.js +1 -1
- package/dist/cjs/internals/bytecode/wasm1.js +1 -1
- package/dist/cjs/internals/bytecode/wasm2.js +1 -1
- package/dist/cjs/internals/client.d.ts +1 -1
- package/dist/cjs/internals/local-instance.d.ts +1 -1
- package/dist/cjs/internals/local-instance.js +7 -1
- package/dist/cjs/no-auto-bytecode-browser.js +21 -4
- package/dist/cjs/no-auto-bytecode-deno.js +31 -25
- package/dist/cjs/no-auto-bytecode-nodejs.js +17 -13
- package/dist/mjs/internals/bytecode/wasm0.js +1 -1
- package/dist/mjs/internals/bytecode/wasm1.js +1 -1
- package/dist/mjs/internals/bytecode/wasm2.js +1 -1
- package/dist/mjs/internals/client.d.ts +1 -1
- package/dist/mjs/internals/local-instance.d.ts +1 -1
- package/dist/mjs/internals/local-instance.js +7 -1
- package/dist/mjs/no-auto-bytecode-browser.js +21 -4
- package/dist/mjs/no-auto-bytecode-deno.js +31 -25
- package/dist/mjs/no-auto-bytecode-nodejs.js +17 -13
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -73,7 +73,7 @@ sandbox".
|
|
|
73
73
|
By default, calling `start()` will run smoldot entirely in the current thread. This can cause
|
|
74
74
|
performance issues if other CPU-heavy operations are done in that thread.
|
|
75
75
|
|
|
76
|
-
In order to help with this, it possible to use smoldot in conjunction with a worker.
|
|
76
|
+
In order to help with this, it is possible to use smoldot in conjunction with a worker.
|
|
77
77
|
To do so, you must first create a worker. Since creating a worker has some subtle differences
|
|
78
78
|
depending on the platform, this is outside of the responsibility of smoldot.
|
|
79
79
|
|