scream-code 0.8.0 → 0.8.2
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/README.md +5 -3
- package/dist/{app-DjVCJ6Hi.mjs → app-C4TYfyrt.mjs} +1021 -224
- package/dist/{esm-CLWbX2Ym.mjs → esm-Du2MwXei.mjs} +2 -2
- package/dist/main.mjs +1 -1
- package/dist/src-S0QPScxL.mjs +7 -0
- package/dist/src-aqNCeRzD.mjs +1674 -0
- package/package.json +2 -1
- package/dist/assets/tokenizers.linux-x64-gnu-BGGFQRsL.node +0 -0
- package/dist/assets/tokenizers.win32-x64-msvc-7FuPBfvC.node +0 -0
|
@@ -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("@anush008/tokenizers-win32-x64-msvc");
|
|
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("@anush008/tokenizers-linux-x64-gnu");
|
|
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-C4TYfyrt.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);
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import { fileURLToPath as __cjsShimFileURLToPath } from 'node:url';
|
|
3
|
+
import { dirname as __cjsShimDirname } from 'node:path';
|
|
4
|
+
const __filename = __cjsShimFileURLToPath(import.meta.url);
|
|
5
|
+
const __dirname = __cjsShimDirname(__filename);
|
|
6
|
+
import { t as multiSearch } from "./src-aqNCeRzD.mjs";
|
|
7
|
+
export { multiSearch };
|