squeezr-ai 1.21.5 → 1.21.6
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/limits.js +4 -1
- package/package.json +1 -1
package/dist/limits.js
CHANGED
|
@@ -314,7 +314,10 @@ export async function maybeRefreshOpenAISessionLimits(force = false) {
|
|
|
314
314
|
return openAISessionRefreshInFlight;
|
|
315
315
|
openAISessionRefreshInFlight = new Promise((resolve) => {
|
|
316
316
|
const { cmd, args } = codexAppServerCommand();
|
|
317
|
-
const child = spawn(cmd, args, {
|
|
317
|
+
const child = spawn(cmd, args, {
|
|
318
|
+
stdio: ['pipe', 'pipe', 'pipe'],
|
|
319
|
+
windowsHide: true,
|
|
320
|
+
});
|
|
318
321
|
let stdoutBuf = '';
|
|
319
322
|
let finished = false;
|
|
320
323
|
const finish = () => {
|
package/package.json
CHANGED