@threadbase-sh/streamer 1.24.0 → 1.24.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/cli.cjs +5 -0
- package/dist/cli.cjs.map +1 -1
- package/dist/index.cjs +5 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +5 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/cli.cjs
CHANGED
|
@@ -139021,6 +139021,11 @@ function buildSpawnEnv() {
|
|
|
139021
139021
|
if (env.CLAUDE_API_KEY) {
|
|
139022
139022
|
env.ANTHROPIC_API_KEY = env.CLAUDE_API_KEY;
|
|
139023
139023
|
}
|
|
139024
|
+
for (const key of Object.keys(env)) {
|
|
139025
|
+
if (key === "CLAUDECODE" || key.startsWith("CLAUDE_CODE_")) {
|
|
139026
|
+
delete env[key];
|
|
139027
|
+
}
|
|
139028
|
+
}
|
|
139024
139029
|
return env;
|
|
139025
139030
|
}
|
|
139026
139031
|
var PTYManager = class {
|