quarto-cli: auto updated to 1.6.39-1
This commit is contained in:
parent
d2872a1ae8
commit
5321a509c0
4 changed files with 100 additions and 71 deletions
18
repo/quarto-cli/001_deno_1.44.diff
Normal file
18
repo/quarto-cli/001_deno_1.44.diff
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
--- quarto-cli-1.4.556.original/src/core/deno-dom.ts 2024-06-27 08:15:10.000000000 +1200
|
||||
+++ quarto-cli-1.4.556/src/core/deno-dom.ts 2024-06-27 10:02:37.434536479 +1200
|
||||
@@ -98,13 +98,13 @@
|
||||
const genericParse = (
|
||||
parser: (
|
||||
srcBuf: Uint8Array,
|
||||
- srcLength: number,
|
||||
+ srcLength: bigint,
|
||||
returnBuf: Uint8Array,
|
||||
) => void,
|
||||
srcHtml: string,
|
||||
): string => {
|
||||
const encodedHtml = utf8Encoder.encode(srcHtml);
|
||||
- parser(encodedHtml, encodedHtml.length, returnBufSizeLen);
|
||||
+ parser(encodedHtml, BigInt(encodedHtml.length), returnBufSizeLen);
|
||||
|
||||
const outBufSize = Number(
|
||||
new DataView(returnBufSizeLenRaw).getBigUint64(0, !isBigEndian),
|
||||
Loading…
Add table
Add a link
Reference in a new issue