mirror of
https://github.com/tauri-apps/actions-netlify.git
synced 2026-01-31 00:45:22 +01:00
* Build(deps-dev): bump @vercel/ncc from 0.29.0 to 0.33.1 Bumps [@vercel/ncc](https://github.com/vercel/ncc) from 0.29.0 to 0.33.1. - [Release notes](https://github.com/vercel/ncc/releases) - [Commits](https://github.com/vercel/ncc/compare/0.29.0...0.33.1) --- updated-dependencies: - dependency-name: "@vercel/ncc" dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * build Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
58 lines
1.5 KiB
JavaScript
58 lines
1.5 KiB
JavaScript
'use strict';
|
|
const fs = require('fs');
|
|
const crypto = require('crypto');
|
|
const {parentPort} = require('worker_threads');
|
|
|
|
const handlers = {
|
|
hashFile: (algorithm, filePath) => new Promise((resolve, reject) => {
|
|
const hasher = crypto.createHash(algorithm);
|
|
fs.createReadStream(filePath)
|
|
// TODO: Use `Stream.pipeline` when targeting Node.js 12.
|
|
.on('error', reject)
|
|
.pipe(hasher)
|
|
.on('error', reject)
|
|
.on('finish', () => {
|
|
const {buffer} = new Uint8Array(hasher.read());
|
|
resolve({value: buffer, transferList: [buffer]});
|
|
});
|
|
}),
|
|
hash: async (algorithm, input) => {
|
|
const hasher = crypto.createHash(algorithm);
|
|
|
|
if (Array.isArray(input)) {
|
|
for (const part of input) {
|
|
hasher.update(part);
|
|
}
|
|
} else {
|
|
hasher.update(input);
|
|
}
|
|
|
|
const {buffer} = new Uint8Array(hasher.digest());
|
|
return {value: buffer, transferList: [buffer]};
|
|
}
|
|
};
|
|
|
|
parentPort.on('message', async message => {
|
|
try {
|
|
const {method, args} = message;
|
|
const handler = handlers[method];
|
|
|
|
if (handler === undefined) {
|
|
throw new Error(`Unknown method '${method}'`);
|
|
}
|
|
|
|
const {value, transferList} = await handler(...args);
|
|
parentPort.postMessage({id: message.id, value}, transferList);
|
|
} catch (error) {
|
|
const newError = {message: error.message, stack: error.stack};
|
|
|
|
for (const [key, value] of Object.entries(error)) {
|
|
if (typeof value !== 'object') {
|
|
newError[key] = value;
|
|
}
|
|
}
|
|
|
|
parentPort.postMessage({id: message.id, error: newError});
|
|
}
|
|
});
|