@dbcube/core 1.0.46 → 1.0.50
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/index.cjs +3 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -616,7 +616,7 @@ var Engine = class {
|
|
|
616
616
|
args = [
|
|
617
617
|
"--id",
|
|
618
618
|
"dbcube-" + this.name,
|
|
619
|
-
"--database",
|
|
619
|
+
"--database-ref",
|
|
620
620
|
this.name,
|
|
621
621
|
"--database",
|
|
622
622
|
this.config.config.DATABASE + ".db",
|
|
@@ -627,7 +627,7 @@ var Engine = class {
|
|
|
627
627
|
args = [
|
|
628
628
|
"--id",
|
|
629
629
|
"dbcube-" + this.name,
|
|
630
|
-
"--database",
|
|
630
|
+
"--database-ref",
|
|
631
631
|
this.name,
|
|
632
632
|
"--database",
|
|
633
633
|
this.config.config.DATABASE,
|
|
@@ -672,6 +672,7 @@ var Engine = class {
|
|
|
672
672
|
}
|
|
673
673
|
async run(binary, args) {
|
|
674
674
|
await this.initializeBinary();
|
|
675
|
+
console.log(this.binary);
|
|
675
676
|
if (!this.binary) {
|
|
676
677
|
throw new Error("Binary not initialized");
|
|
677
678
|
}
|