Skip to content

Commit bfb9785

Browse files
author
Release Workflow
committed
chore(release): wasm v6.1.2
1 parent dd29bc9 commit bfb9785

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

packages/wasm/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @rollup/plugin-wasm ChangeLog
22

3+
## v6.1.2
4+
5+
_2023-01-20_
6+
7+
### Updates
8+
9+
- docs: Update README with more explicit details [#1405](https://github.com/rollup/plugins/pull/1405)
10+
311
## v6.1.1
412

513
_2022-12-17_

packages/wasm/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ const options = {
151151
mem: memory
152152
},
153153
imports: {
154-
log: arg => console.log(arg)
154+
log: (arg) => console.log(arg)
155155
}
156156
};
157157

@@ -162,7 +162,7 @@ sample(options).then(({ instance }) => {
162162

163163
Because this example passes in `imports`, the `instance` becomes an instance of [`WebAssembly.Instance`](https://developer.mozilla.org/en-US/docs/WebAssembly/JavaScript_interface/Instance) and gives the WebAssembly code access to the imports and memory from JavaScript.
164164

165-
__Note: Just passing in memory will result in a `WebAssembly.Module` as `instance`; it's only `imports` that triggers the creation of `WebAssembly.Instance`.
165+
\_\_Note: Just passing in memory will result in a `WebAssembly.Module` as `instance`; it's only `imports` that triggers the creation of `WebAssembly.Instance`.
166166

167167
### Using with wasm-bindgen and wasm-pack
168168

packages/wasm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rollup/plugin-wasm",
3-
"version": "6.1.1",
3+
"version": "6.1.2",
44
"publishConfig": {
55
"access": "public"
66
},

0 commit comments

Comments
 (0)