opencode-acp 1.14.24 → 1.14.25
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.d.ts.map +1 -1
- package/dist/index.js +6 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,qBAAqB,CAAA;AA2BjD,QAAA,MAAM,MAAM,EAAE,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,qBAAqB,CAAA;AA2BjD,QAAA,MAAM,MAAM,EAAE,MA0JK,CAAA;AAEnB,eAAe,MAAM,CAAA"}
|
package/dist/index.js
CHANGED
|
@@ -9110,7 +9110,7 @@ import { writeFile as writeFile2, mkdir as mkdir2 } from "fs/promises";
|
|
|
9110
9110
|
import { join as join3 } from "path";
|
|
9111
9111
|
import { existsSync as existsSync3 } from "fs";
|
|
9112
9112
|
import { homedir as homedir3 } from "os";
|
|
9113
|
-
var LOG_VERSION = true ? "1.14.
|
|
9113
|
+
var LOG_VERSION = true ? "1.14.25" : "dev";
|
|
9114
9114
|
var LEVEL_RANK = {
|
|
9115
9115
|
debug: 10,
|
|
9116
9116
|
info: 20,
|
|
@@ -11545,9 +11545,13 @@ var server = (async (ctx) => {
|
|
|
11545
11545
|
if (!config.enabled) {
|
|
11546
11546
|
return {};
|
|
11547
11547
|
}
|
|
11548
|
+
if (process.env.BILLION_CONTEXT_PROXY) {
|
|
11549
|
+
console.log("[opencode-acp] disabled: BILLION_CONTEXT_PROXY detected \u2014 proxy handles compression");
|
|
11550
|
+
return {};
|
|
11551
|
+
}
|
|
11548
11552
|
const logger = new Logger(config.debug, config.debug ? "debug" : config.logLevel);
|
|
11549
11553
|
logger.info("ACP plugin initialized", {
|
|
11550
|
-
version: true ? "1.14.
|
|
11554
|
+
version: true ? "1.14.25" : "dev",
|
|
11551
11555
|
workspace: ctx.directory,
|
|
11552
11556
|
logLevel: logger.level,
|
|
11553
11557
|
debug: config.debug,
|