- Extract 4756 source files from cli.js.map (57MB) - Set up Bun build system with bun:bundle feature flag shim - Configure 90+ compile-time feature flags matching production defaults - Inject MACRO constants (VERSION, BUILD_TIME, etc.) - Create stubs for private packages (color-diff-napi, modifiers-napi, etc.) - Install all public dependencies via pnpm - Patch commander v14 to allow multi-char short flags (-d2e) - Build output: dist/cli.js (22MB), verified working
31 lines
1.4 KiB
JavaScript
31 lines
1.4 KiB
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.getAwsChunkedEncodingStream = void 0;
|
|
const stream_1 = require("stream");
|
|
const getAwsChunkedEncodingStream = (readableStream, options) => {
|
|
const { base64Encoder, bodyLengthChecker, checksumAlgorithmFn, checksumLocationName, streamHasher } = options;
|
|
const checksumRequired = base64Encoder !== undefined &&
|
|
checksumAlgorithmFn !== undefined &&
|
|
checksumLocationName !== undefined &&
|
|
streamHasher !== undefined;
|
|
const digest = checksumRequired ? streamHasher(checksumAlgorithmFn, readableStream) : undefined;
|
|
const awsChunkedEncodingStream = new stream_1.Readable({ read: () => { } });
|
|
readableStream.on("data", (data) => {
|
|
const length = bodyLengthChecker(data) || 0;
|
|
awsChunkedEncodingStream.push(`${length.toString(16)}\r\n`);
|
|
awsChunkedEncodingStream.push(data);
|
|
awsChunkedEncodingStream.push("\r\n");
|
|
});
|
|
readableStream.on("end", async () => {
|
|
awsChunkedEncodingStream.push(`0\r\n`);
|
|
if (checksumRequired) {
|
|
const checksum = base64Encoder(await digest);
|
|
awsChunkedEncodingStream.push(`${checksumLocationName}:${checksum}\r\n`);
|
|
awsChunkedEncodingStream.push(`\r\n`);
|
|
}
|
|
awsChunkedEncodingStream.push(null);
|
|
});
|
|
return awsChunkedEncodingStream;
|
|
};
|
|
exports.getAwsChunkedEncodingStream = getAwsChunkedEncodingStream;
|