@clazic/kordoc 2.4.10 → 2.4.11

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/index.js CHANGED
@@ -2034,7 +2034,7 @@ import { join } from "path";
2034
2034
  import { tmpdir } from "os";
2035
2035
  function getTempDir() {
2036
2036
  if (!_tempDir) {
2037
- _tempDir = join(process.cwd(), "_kordoc_ocr_tmp");
2037
+ _tempDir = join(process.cwd(), ".kordoc_ocr_tmp");
2038
2038
  mkdirSync(_tempDir, { recursive: true });
2039
2039
  }
2040
2040
  return _tempDir;
@@ -2856,7 +2856,7 @@ import JSZip2 from "jszip";
2856
2856
  import { DOMParser } from "@xmldom/xmldom";
2857
2857
 
2858
2858
  // src/utils.ts
2859
- var VERSION = true ? "2.4.10" : "0.0.0-dev";
2859
+ var VERSION = true ? "2.4.11" : "0.0.0-dev";
2860
2860
  function toArrayBuffer(buf) {
2861
2861
  if (buf.byteOffset === 0 && buf.byteLength === buf.buffer.byteLength) {
2862
2862
  return buf.buffer;