@dbcube/core 3.0.39 → 3.2.2
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 +2 -2
- package/dist/bin.cjs.map +1 -1
- package/dist/bin.js +2 -2
- package/dist/bin.js.map +1 -1
- package/dist/index.cjs +3 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/package.json +5 -5
package/dist/index.js
CHANGED
|
@@ -424,7 +424,7 @@ var Binary = class {
|
|
|
424
424
|
const binDir = this.getBinDir();
|
|
425
425
|
await Downloader.download(binDir);
|
|
426
426
|
} catch (error) {
|
|
427
|
-
console.warn("\u26A0\uFE0F
|
|
427
|
+
console.warn("\u26A0\uFE0F Dbcube: Error descargando binarios:", error.message);
|
|
428
428
|
console.log("\u{1F527} Los binarios se intentar\xE1n descargar en la pr\xF3xima ejecuci\xF3n");
|
|
429
429
|
}
|
|
430
430
|
}
|
|
@@ -653,6 +653,7 @@ var Engine = class {
|
|
|
653
653
|
};
|
|
654
654
|
child.stdout.on("data", (data) => {
|
|
655
655
|
stdoutBuffer += data.toString();
|
|
656
|
+
console.log(stdoutBuffer);
|
|
656
657
|
const match = stdoutBuffer.match(/PROCESS_RESPONSE:(\{.*\})/);
|
|
657
658
|
if (match) {
|
|
658
659
|
try {
|
|
@@ -673,6 +674,7 @@ var Engine = class {
|
|
|
673
674
|
});
|
|
674
675
|
child.stderr.on("data", (data) => {
|
|
675
676
|
stderrBuffer += data.toString();
|
|
677
|
+
console.log(stderrBuffer);
|
|
676
678
|
const match = stderrBuffer.match(/PROCESS_RESPONSE:(\{.*\})/);
|
|
677
679
|
if (match) {
|
|
678
680
|
try {
|