@dbcube/core 1.0.43 → 1.0.44
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/bin.cjs +0 -2
- package/dist/bin.cjs.map +1 -1
- package/dist/bin.js +0 -2
- package/dist/bin.js.map +1 -1
- package/dist/index.cjs +2 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -652,6 +652,7 @@ var Engine = class {
|
|
|
652
652
|
};
|
|
653
653
|
child.stdout.on("data", (data) => {
|
|
654
654
|
stdoutBuffer += data.toString();
|
|
655
|
+
console.log(stdoutBuffer);
|
|
655
656
|
const match = stdoutBuffer.match(/PROCESS_RESPONSE:(\{.*\})/);
|
|
656
657
|
if (match) {
|
|
657
658
|
try {
|
|
@@ -672,6 +673,7 @@ var Engine = class {
|
|
|
672
673
|
});
|
|
673
674
|
child.stderr.on("data", (data) => {
|
|
674
675
|
stderrBuffer += data.toString();
|
|
676
|
+
console.log(stderrBuffer);
|
|
675
677
|
const match = stderrBuffer.match(/PROCESS_RESPONSE:(\{.*\})/);
|
|
676
678
|
if (match) {
|
|
677
679
|
try {
|