@zgsm/costrict-cli 0.0.13 → 0.0.15
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 +1 -1
- package/bundle/gemini.js +12109 -6930
- package/bundle/workers/call-graph-worker.js +2 -2
- package/bundle/workers/ckg-build-worker.js +2 -2
- package/bundle/workers/ckg-parser-worker.js +2 -2
- package/bundle/workers/file-importance-worker.js +2 -2
- package/bundle/workers/get-ranked-tags-worker.js +2 -2
- package/package.json +2 -2
|
@@ -40055,9 +40055,9 @@ var DebugLogger = class {
|
|
|
40055
40055
|
customLogFilePath;
|
|
40056
40056
|
currentLogDate;
|
|
40057
40057
|
constructor() {
|
|
40058
|
-
const debugEnv = process.env["COSTRICT_DEBUG"]
|
|
40058
|
+
const debugEnv = process.env["COSTRICT_DEBUG"];
|
|
40059
40059
|
this.debugEnabled = debugEnv === void 0 ? true : debugEnv !== "0" && debugEnv !== "false";
|
|
40060
|
-
this.customLogFilePath = process.env["COSTRICT_DEBUG_LOG_FILE"]
|
|
40060
|
+
this.customLogFilePath = process.env["COSTRICT_DEBUG_LOG_FILE"];
|
|
40061
40061
|
this.initializeLogStream();
|
|
40062
40062
|
}
|
|
40063
40063
|
initializeLogStream() {
|
|
@@ -40805,9 +40805,9 @@ var DebugLogger = class {
|
|
|
40805
40805
|
customLogFilePath;
|
|
40806
40806
|
currentLogDate;
|
|
40807
40807
|
constructor() {
|
|
40808
|
-
const debugEnv = process.env["COSTRICT_DEBUG"]
|
|
40808
|
+
const debugEnv = process.env["COSTRICT_DEBUG"];
|
|
40809
40809
|
this.debugEnabled = debugEnv === void 0 ? true : debugEnv !== "0" && debugEnv !== "false";
|
|
40810
|
-
this.customLogFilePath = process.env["COSTRICT_DEBUG_LOG_FILE"]
|
|
40810
|
+
this.customLogFilePath = process.env["COSTRICT_DEBUG_LOG_FILE"];
|
|
40811
40811
|
this.initializeLogStream();
|
|
40812
40812
|
}
|
|
40813
40813
|
initializeLogStream() {
|
|
@@ -40029,9 +40029,9 @@ var DebugLogger = class {
|
|
|
40029
40029
|
customLogFilePath;
|
|
40030
40030
|
currentLogDate;
|
|
40031
40031
|
constructor() {
|
|
40032
|
-
const debugEnv = process.env["COSTRICT_DEBUG"]
|
|
40032
|
+
const debugEnv = process.env["COSTRICT_DEBUG"];
|
|
40033
40033
|
this.debugEnabled = debugEnv === void 0 ? true : debugEnv !== "0" && debugEnv !== "false";
|
|
40034
|
-
this.customLogFilePath = process.env["COSTRICT_DEBUG_LOG_FILE"]
|
|
40034
|
+
this.customLogFilePath = process.env["COSTRICT_DEBUG_LOG_FILE"];
|
|
40035
40035
|
this.initializeLogStream();
|
|
40036
40036
|
}
|
|
40037
40037
|
initializeLogStream() {
|
|
@@ -41887,9 +41887,9 @@ var DebugLogger = class {
|
|
|
41887
41887
|
customLogFilePath;
|
|
41888
41888
|
currentLogDate;
|
|
41889
41889
|
constructor() {
|
|
41890
|
-
const debugEnv = process.env["COSTRICT_DEBUG"]
|
|
41890
|
+
const debugEnv = process.env["COSTRICT_DEBUG"];
|
|
41891
41891
|
this.debugEnabled = debugEnv === void 0 ? true : debugEnv !== "0" && debugEnv !== "false";
|
|
41892
|
-
this.customLogFilePath = process.env["COSTRICT_DEBUG_LOG_FILE"]
|
|
41892
|
+
this.customLogFilePath = process.env["COSTRICT_DEBUG_LOG_FILE"];
|
|
41893
41893
|
this.initializeLogStream();
|
|
41894
41894
|
}
|
|
41895
41895
|
initializeLogStream() {
|
|
@@ -42435,9 +42435,9 @@ var DebugLogger = class {
|
|
|
42435
42435
|
customLogFilePath;
|
|
42436
42436
|
currentLogDate;
|
|
42437
42437
|
constructor() {
|
|
42438
|
-
const debugEnv = process.env["COSTRICT_DEBUG"]
|
|
42438
|
+
const debugEnv = process.env["COSTRICT_DEBUG"];
|
|
42439
42439
|
this.debugEnabled = debugEnv === void 0 ? true : debugEnv !== "0" && debugEnv !== "false";
|
|
42440
|
-
this.customLogFilePath = process.env["COSTRICT_DEBUG_LOG_FILE"]
|
|
42440
|
+
this.customLogFilePath = process.env["COSTRICT_DEBUG_LOG_FILE"];
|
|
42441
42441
|
this.initializeLogStream();
|
|
42442
42442
|
}
|
|
42443
42443
|
initializeLogStream() {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zgsm/costrict-cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.15",
|
|
4
4
|
"engines": {
|
|
5
5
|
"node": ">=20.0.0"
|
|
6
6
|
},
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"prebuild": "node scripts/prebuild-native.js",
|
|
21
21
|
"start": "cross-env NODE_ENV=development node scripts/start.js",
|
|
22
22
|
"start:a2a-server": "CODER_AGENT_PORT=41242 npm run start --workspace @zgsm/costrict-cli-a2a-server",
|
|
23
|
-
"debug": "cross-env DEBUG=1 node
|
|
23
|
+
"debug": "cross-env DEBUG=1 node scripts/start.js",
|
|
24
24
|
"deflake": "node scripts/deflake.js",
|
|
25
25
|
"deflake:test:integration:sandbox:none": "npm run deflake -- --command=\"npm run test:integration:sandbox:none -- --retry=0\"",
|
|
26
26
|
"deflake:test:integration:sandbox:docker": "npm run deflake -- --command=\"npm run test:integration:sandbox:docker -- --retry=0\"",
|