Skip to content

Commit

Permalink
Actions build/nwtgck dependabot/npm and yarn/netlify 6.1.4 (#420)
Browse files Browse the repository at this point in the history
* chore(deps): bump netlify from 4.6.0 to 6.1.4

Bumps [netlify](https://github.com/netlify/js-client) from 4.6.0 to 6.1.4.
- [Release notes](https://github.com/netlify/js-client/releases)
- [Changelog](https://github.com/netlify/js-client/blob/master/CHANGELOG.md)
- [Commits](netlify/js-client@v4.6.0...v6.1.4)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* build

Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
3 people authored Jan 28, 2021
1 parent b1987ee commit 5a64620
Show file tree
Hide file tree
Showing 5 changed files with 2,663 additions and 6,285 deletions.
Binary file added dist/elf_cam_bg.wasm
Binary file not shown.
8,727 changes: 2,560 additions & 6,167 deletions dist/index.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/thread.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const handlers = {
.pipe(hasher)
.on('error', reject)
.on('finish', () => {
const {buffer} = hasher.read();
const {buffer} = new Uint8Array(hasher.read());
resolve({value: buffer, transferList: [buffer]});
});
}),
Expand All @@ -35,8 +35,8 @@ const handlers = {
hasher.update(input);
}

const hash = hasher.digest().buffer;
return {value: hash, transferList: [hash]};
const {buffer} = new Uint8Array(hasher.digest());
return {value: buffer, transferList: [buffer]};
}
};

Expand Down
Loading

1 comment on commit 5a64620

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.