@swmansion/argent 0.25.1-next.18 → 0.25.1-next.19
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-cmds.mjs +1 -1
- package/dist/installer.mjs +1 -1
- package/dist/tool-server.cjs +5 -2
- package/package.json +1 -1
package/dist/cli-cmds.mjs
CHANGED
|
@@ -21857,7 +21857,7 @@ var _CI_VENDOR_COUNT_FOR_TEST = vendors_default.length;
|
|
|
21857
21857
|
var SESSION_ID2 = randomUUID5();
|
|
21858
21858
|
function readCliVersion() {
|
|
21859
21859
|
if (true) {
|
|
21860
|
-
return "0.25.1-next.
|
|
21860
|
+
return "0.25.1-next.19";
|
|
21861
21861
|
}
|
|
21862
21862
|
return "0.0.0";
|
|
21863
21863
|
}
|
package/dist/installer.mjs
CHANGED
|
@@ -16710,7 +16710,7 @@ var _CI_VENDOR_COUNT_FOR_TEST = vendors_default.length;
|
|
|
16710
16710
|
var SESSION_ID = randomUUID4();
|
|
16711
16711
|
function readCliVersion() {
|
|
16712
16712
|
if (true) {
|
|
16713
|
-
return "0.25.1-next.
|
|
16713
|
+
return "0.25.1-next.19";
|
|
16714
16714
|
}
|
|
16715
16715
|
return "0.0.0";
|
|
16716
16716
|
}
|
package/dist/tool-server.cjs
CHANGED
|
@@ -94704,7 +94704,7 @@ var _CI_VENDOR_COUNT_FOR_TEST = vendors_default.length;
|
|
|
94704
94704
|
var SESSION_ID = (0, import_node_crypto3.randomUUID)();
|
|
94705
94705
|
function readCliVersion() {
|
|
94706
94706
|
if (true) {
|
|
94707
|
-
return "0.25.1-next.
|
|
94707
|
+
return "0.25.1-next.19";
|
|
94708
94708
|
}
|
|
94709
94709
|
return "0.0.0";
|
|
94710
94710
|
}
|
|
@@ -120257,7 +120257,10 @@ async function bootElectronApp(options) {
|
|
|
120257
120257
|
try {
|
|
120258
120258
|
child = (0, import_node_child_process23.spawn)(launcher.command, args, {
|
|
120259
120259
|
detached: true,
|
|
120260
|
-
|
|
120260
|
+
// stdout is discarded, not piped: nothing reads it, and an unread pipe
|
|
120261
|
+
// blocks the child's writes once the OS buffer fills. The
|
|
120262
|
+
// ELECTRON_ENABLE_LOGGING below is what keeps it writing.
|
|
120263
|
+
stdio: ["ignore", "ignore", "pipe"],
|
|
120261
120264
|
// Strip ELECTRON_RUN_AS_NODE (see electronGuiChildEnv): inherited from an
|
|
120262
120265
|
// Electron-based MCP host it would boot the binary in Node mode with no
|
|
120263
120266
|
// CDP endpoint, failing boot-device instead of bringing the app up.
|
package/package.json
CHANGED