scream-code 0.6.10 → 0.7.1
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/{app-BRE6Pm0i.mjs → app-DupTD-8y.mjs} +2009 -390
- package/dist/assets/tokenizers.linux-x64-gnu-BGGFQRsL.node +0 -0
- package/dist/assets/tokenizers.win32-x64-msvc-7FuPBfvC.node +0 -0
- package/dist/{esm-Du2MwXei.mjs → esm-CLWbX2Ym.mjs} +2 -2
- package/dist/main.mjs +1 -1
- package/package.json +1 -1
- package/dist/{src-BMbLXrAA.mjs → src-Dae4j3bv.mjs} +2 -2
|
Binary file
|
|
Binary file
|
|
@@ -57,7 +57,7 @@ var require_tokenizers = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
57
57
|
localFileExisted = existsSync(join$1(__dirname, "tokenizers.win32-x64-msvc.node"));
|
|
58
58
|
try {
|
|
59
59
|
if (localFileExisted) nativeBinding = __require("./tokenizers.win32-x64-msvc.node");
|
|
60
|
-
else nativeBinding = __require("
|
|
60
|
+
else nativeBinding = __require("./assets/tokenizers.win32-x64-msvc-7FuPBfvC.node");
|
|
61
61
|
} catch (e) {
|
|
62
62
|
loadError = e;
|
|
63
63
|
}
|
|
@@ -137,7 +137,7 @@ var require_tokenizers = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
137
137
|
localFileExisted = existsSync(join$1(__dirname, "tokenizers.linux-x64-gnu.node"));
|
|
138
138
|
try {
|
|
139
139
|
if (localFileExisted) nativeBinding = __require("./tokenizers.linux-x64-gnu.node");
|
|
140
|
-
else nativeBinding = __require("
|
|
140
|
+
else nativeBinding = __require("./assets/tokenizers.linux-x64-gnu-BGGFQRsL.node");
|
|
141
141
|
} catch (e) {
|
|
142
142
|
loadError = e;
|
|
143
143
|
}
|
package/dist/main.mjs
CHANGED
|
@@ -6,7 +6,7 @@ const __dirname = __cjsShimDirname(__filename);
|
|
|
6
6
|
import "./suppress-sqlite-warning-C2VB0doZ.mjs";
|
|
7
7
|
//#region src/main.ts
|
|
8
8
|
try {
|
|
9
|
-
(await import("./app-
|
|
9
|
+
(await import("./app-DupTD-8y.mjs")).main();
|
|
10
10
|
} catch (error) {
|
|
11
11
|
process.stderr.write(`${error instanceof Error ? error.stack ?? error.message : String(error)}\n`);
|
|
12
12
|
process.exit(1);
|
package/package.json
CHANGED
|
@@ -8,11 +8,11 @@ import { c as init_fetch_blob, i as init_esm_min, n as FormData, r as formDataTo
|
|
|
8
8
|
import Ds, { PassThrough, pipeline } from "node:stream";
|
|
9
9
|
import http from "node:http";
|
|
10
10
|
import { format } from "node:url";
|
|
11
|
+
import { isIP } from "node:net";
|
|
12
|
+
import { deprecate, promisify, types } from "node:util";
|
|
11
13
|
import https from "node:https";
|
|
12
14
|
import zlib from "node:zlib";
|
|
13
15
|
import { Buffer as Buffer$1 } from "node:buffer";
|
|
14
|
-
import { deprecate, promisify, types } from "node:util";
|
|
15
|
-
import { isIP } from "node:net";
|
|
16
16
|
//#region ../../node_modules/.pnpm/data-uri-to-buffer@4.0.1/node_modules/data-uri-to-buffer/dist/index.js
|
|
17
17
|
/**
|
|
18
18
|
* Returns a `Buffer` instance from the given data URI `uri`.
|