codify-plugin-lib 1.0.182-beta10 → 1.0.182-beta11
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.
|
@@ -6,7 +6,6 @@ import * as fs from 'node:fs/promises';
|
|
|
6
6
|
import stripAnsi from 'strip-ansi';
|
|
7
7
|
import { debugLog } from '../utils/debug.js';
|
|
8
8
|
import { Shell, Utils } from '../utils/index.js';
|
|
9
|
-
import { VerbosityLevel } from '../utils/verbosity-level.js';
|
|
10
9
|
import { SpawnError } from './index.js';
|
|
11
10
|
import { PromiseQueue } from './promise-queue.js';
|
|
12
11
|
EventEmitter.defaultMaxListeners = 1000;
|
|
@@ -67,9 +66,9 @@ export class BackgroundPty {
|
|
|
67
66
|
}
|
|
68
67
|
else {
|
|
69
68
|
// Print to stdout if the verbosity level is above 0
|
|
70
|
-
if (VerbosityLevel.get() > 0) {
|
|
71
|
-
|
|
72
|
-
}
|
|
69
|
+
// if (VerbosityLevel.get() > 0) {
|
|
70
|
+
// process.stdout.write(data);
|
|
71
|
+
// }
|
|
73
72
|
}
|
|
74
73
|
});
|
|
75
74
|
this.promiseQueue.run(async () => new Promise((resolve) => {
|
package/package.json
CHANGED
|
@@ -81,9 +81,9 @@ export class BackgroundPty implements IPty {
|
|
|
81
81
|
});
|
|
82
82
|
} else {
|
|
83
83
|
// Print to stdout if the verbosity level is above 0
|
|
84
|
-
if (VerbosityLevel.get() > 0) {
|
|
85
|
-
|
|
86
|
-
}
|
|
84
|
+
// if (VerbosityLevel.get() > 0) {
|
|
85
|
+
// process.stdout.write(data);
|
|
86
|
+
// }
|
|
87
87
|
}
|
|
88
88
|
})
|
|
89
89
|
|