querysub 0.238.0 → 0.239.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "querysub",
3
- "version": "0.238.0",
3
+ "version": "0.239.0",
4
4
  "main": "index.js",
5
5
  "license": "MIT",
6
6
  "note1": "note on node-forge fork, see https://github.com/digitalbazaar/forge/issues/744 for details",
@@ -106,6 +106,8 @@ export async function streamScreenOutput(config: {
106
106
 
107
107
  let started = new PromiseObj<void>();
108
108
 
109
+ console.log(`Has stdout: ${!!childProcess.stdout}`);
110
+
109
111
  childProcess.stdout?.on("data", (data) => {
110
112
  if (stopped) return;
111
113
  console.log(`Captured data for ${screenName}: ${data.length}`);