squeezr-ai 1.16.9 → 1.16.10
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/bin/squeezr.js +4 -4
- package/package.json +1 -1
package/bin/squeezr.js
CHANGED
|
@@ -1067,8 +1067,8 @@ switch (command) {
|
|
|
1067
1067
|
// Start the daemon directly from the new dist/index.js (no re-exec of old binary)
|
|
1068
1068
|
console.log('Starting Squeezr...')
|
|
1069
1069
|
const newDistIndex = path.join(newRoot, 'dist', 'index.js')
|
|
1070
|
-
const
|
|
1071
|
-
const
|
|
1070
|
+
const startPort = getPort()
|
|
1071
|
+
const startMitmPort = getMitmPort(startPort)
|
|
1072
1072
|
const logDir = path.join(os.homedir(), '.squeezr')
|
|
1073
1073
|
const logFile = path.join(logDir, 'squeezr.log')
|
|
1074
1074
|
fs.mkdirSync(logDir, { recursive: true })
|
|
@@ -1082,8 +1082,8 @@ switch (command) {
|
|
|
1082
1082
|
child.unref()
|
|
1083
1083
|
fs.closeSync(logFd)
|
|
1084
1084
|
console.log(`Squeezr started (pid ${child.pid})`)
|
|
1085
|
-
console.log(` HTTP proxy (Claude/Aider/Gemini): http://localhost:${
|
|
1086
|
-
console.log(` MITM proxy (Codex): http://localhost:${
|
|
1085
|
+
console.log(` HTTP proxy (Claude/Aider/Gemini): http://localhost:${startPort}`)
|
|
1086
|
+
console.log(` MITM proxy (Codex): http://localhost:${startMitmPort}`)
|
|
1087
1087
|
console.log(` Logs: ${logFile}`)
|
|
1088
1088
|
|
|
1089
1089
|
if (isWSL()) {
|
package/package.json
CHANGED