@clazic/kordoc 2.7.2 → 2.7.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{chunk-WMQBWE6H.js → chunk-CIR4TB4K.js} +2 -2
- package/dist/{chunk-OF2YI3AC.js → chunk-WE7MWE73.js} +6 -5
- package/dist/{chunk-OF2YI3AC.js.map → chunk-WE7MWE73.js.map} +1 -1
- package/dist/cli.js +6 -6
- package/dist/index.cjs +9 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +9 -6
- package/dist/index.js.map +1 -1
- package/dist/mcp.js +2 -2
- package/dist/{utils-CJPB6YNH.js → utils-LYW4Z2Z6.js} +2 -2
- package/dist/{watch-MMYT64UO.js → watch-A4DEF4GF.js} +3 -3
- package/package.json +1 -1
- /package/dist/{chunk-WMQBWE6H.js.map → chunk-CIR4TB4K.js.map} +0 -0
- /package/dist/{utils-CJPB6YNH.js.map → utils-LYW4Z2Z6.js.map} +0 -0
- /package/dist/{watch-MMYT64UO.js.map → watch-A4DEF4GF.js.map} +0 -0
package/dist/index.js
CHANGED
|
@@ -3112,7 +3112,7 @@ import JSZip2 from "jszip";
|
|
|
3112
3112
|
import { DOMParser } from "@xmldom/xmldom";
|
|
3113
3113
|
|
|
3114
3114
|
// src/utils.ts
|
|
3115
|
-
var VERSION = true ? "2.7.
|
|
3115
|
+
var VERSION = true ? "2.7.3" : "0.0.0-dev";
|
|
3116
3116
|
function toArrayBuffer(buf) {
|
|
3117
3117
|
if (buf.byteOffset === 0 && buf.byteLength === buf.buffer.byteLength) {
|
|
3118
3118
|
return buf.buffer;
|
|
@@ -11472,14 +11472,15 @@ async function resolveSoffice(emitter, autoInstall = true) {
|
|
|
11472
11472
|
|
|
11473
11473
|
// src/convert/libreoffice.ts
|
|
11474
11474
|
var libreConvert = libre.convert;
|
|
11475
|
-
async function convertBuffer(buffer, targetExt, timeoutMs = 6e4) {
|
|
11475
|
+
async function convertBuffer(buffer, targetExt, timeoutMs = 6e4, sofficePath) {
|
|
11476
11476
|
return new Promise((resolve4, reject) => {
|
|
11477
11477
|
const timer = setTimeout(() => {
|
|
11478
11478
|
reject(
|
|
11479
11479
|
new ConvertError("TIMEOUT", `\uBCC0\uD658 \uD0C0\uC784\uC544\uC6C3 (${timeoutMs}ms \uCD08\uACFC)`)
|
|
11480
11480
|
);
|
|
11481
11481
|
}, timeoutMs);
|
|
11482
|
-
|
|
11482
|
+
const opts = sofficePath ? { sofficeBinaryPaths: [sofficePath] } : void 0;
|
|
11483
|
+
libreConvert(buffer, targetExt, opts, (err, done) => {
|
|
11483
11484
|
clearTimeout(timer);
|
|
11484
11485
|
if (err || !done) {
|
|
11485
11486
|
reject(
|
|
@@ -11647,7 +11648,7 @@ async function convertToPdf(input, options) {
|
|
|
11647
11648
|
try {
|
|
11648
11649
|
emitter.convertStart("\uBCC0\uD658 \uC2DC\uC791...");
|
|
11649
11650
|
emitter.progress(10, "\uBCC0\uD658 \uC911...");
|
|
11650
|
-
const pdf = await convertBuffer(buffer, ".pdf", options?.timeoutMs);
|
|
11651
|
+
const pdf = await convertBuffer(buffer, ".pdf", options?.timeoutMs, sofficePath);
|
|
11651
11652
|
emitter.progress(100, "\uBCC0\uD658 \uC644\uB8CC");
|
|
11652
11653
|
emitter.convertDone("\uBCC0\uD658 \uC644\uB8CC");
|
|
11653
11654
|
const result = {
|
|
@@ -12000,16 +12001,18 @@ async function runUnifiedOcrPipeline(inputPath, options = {}) {
|
|
|
12000
12001
|
}
|
|
12001
12002
|
});
|
|
12002
12003
|
}
|
|
12004
|
+
let resolvedSofficePath;
|
|
12003
12005
|
if (options.sofficePath) {
|
|
12004
12006
|
const sofficeDir = dirname3(options.sofficePath);
|
|
12005
12007
|
process.env.PATH = `${sofficeDir}${delimiter2}${process.env.PATH ?? ""}`;
|
|
12006
12008
|
convertEmitter.validate("soffice_found", "\uC9C1\uC811 \uC9C0\uC815\uB41C LibreOffice \uACBD\uB85C \uC0AC\uC6A9", { sofficePath: options.sofficePath });
|
|
12009
|
+
resolvedSofficePath = options.sofficePath;
|
|
12007
12010
|
} else {
|
|
12008
|
-
await resolveSoffice(convertEmitter, options.autoInstallLibreOffice ?? false);
|
|
12011
|
+
resolvedSofficePath = await resolveSoffice(convertEmitter, options.autoInstallLibreOffice ?? false);
|
|
12009
12012
|
}
|
|
12010
12013
|
workingPdfPath = join5(workspaceDir, `${stem}.pdf`);
|
|
12011
12014
|
const inputBuffer = await readFile2(absInput);
|
|
12012
|
-
const out = await convertBuffer(inputBuffer, ".pdf");
|
|
12015
|
+
const out = await convertBuffer(inputBuffer, ".pdf", 5 * 6e4, resolvedSofficePath);
|
|
12013
12016
|
await writeFile2(workingPdfPath, out);
|
|
12014
12017
|
}
|
|
12015
12018
|
timingsMs.convert = elapsedMs(convertStart);
|