theclawbay 0.3.58 → 0.3.59
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/commands/setup.js +6 -0
- package/package.json +1 -1
package/dist/commands/setup.js
CHANGED
|
@@ -2069,6 +2069,12 @@ async function persistClaudeEditorSettings(params) {
|
|
|
2069
2069
|
nextEnv[name] = value;
|
|
2070
2070
|
changed = true;
|
|
2071
2071
|
}
|
|
2072
|
+
for (const name of MANAGED_EDITOR_TERMINAL_ENV_NAMES) {
|
|
2073
|
+
if (name in desiredEnv || !(name in nextEnv))
|
|
2074
|
+
continue;
|
|
2075
|
+
delete nextEnv[name];
|
|
2076
|
+
changed = true;
|
|
2077
|
+
}
|
|
2072
2078
|
settings[CLAUDE_CODE_EDITOR_ENV_SETTING] = nextEnv;
|
|
2073
2079
|
if (settings[CLAUDE_CODE_EDITOR_DISABLE_LOGIN_PROMPT_SETTING] !== true) {
|
|
2074
2080
|
settings[CLAUDE_CODE_EDITOR_DISABLE_LOGIN_PROMPT_SETTING] = true;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "theclawbay",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.59",
|
|
4
4
|
"description": "CLI for connecting Codex, Continue, Cline, GSD, OpenClaw, OpenCode, Kilo, Roo Code, Aider, experimental Trae, and experimental Zo to The Claw Bay.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"bin": {
|