latticesql 1.6.2 → 1.6.3
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/cli.js
CHANGED
|
@@ -6153,7 +6153,7 @@ var PostgresAdapter = class {
|
|
|
6153
6153
|
_opened = false;
|
|
6154
6154
|
constructor(connectionString, options = {}) {
|
|
6155
6155
|
this._connectionString = connectionString;
|
|
6156
|
-
this._workerPath = options.workerPath ?? path.join(__dirname2, "postgres-worker.
|
|
6156
|
+
this._workerPath = options.workerPath ?? path.join(__dirname2, "postgres-worker.cjs");
|
|
6157
6157
|
}
|
|
6158
6158
|
open() {
|
|
6159
6159
|
if (this._opened) return;
|
package/dist/index.cjs
CHANGED
|
@@ -5896,7 +5896,7 @@ var PostgresAdapter = class {
|
|
|
5896
5896
|
_opened = false;
|
|
5897
5897
|
constructor(connectionString, options = {}) {
|
|
5898
5898
|
this._connectionString = connectionString;
|
|
5899
|
-
this._workerPath = options.workerPath ?? import_node_path3.default.join(__dirname2, "postgres-worker.
|
|
5899
|
+
this._workerPath = options.workerPath ?? import_node_path3.default.join(__dirname2, "postgres-worker.cjs");
|
|
5900
5900
|
}
|
|
5901
5901
|
open() {
|
|
5902
5902
|
if (this._opened) return;
|
package/dist/index.js
CHANGED
|
@@ -5839,7 +5839,7 @@ var PostgresAdapter = class {
|
|
|
5839
5839
|
_opened = false;
|
|
5840
5840
|
constructor(connectionString, options = {}) {
|
|
5841
5841
|
this._connectionString = connectionString;
|
|
5842
|
-
this._workerPath = options.workerPath ?? path.join(__dirname2, "postgres-worker.
|
|
5842
|
+
this._workerPath = options.workerPath ?? path.join(__dirname2, "postgres-worker.cjs");
|
|
5843
5843
|
}
|
|
5844
5844
|
open() {
|
|
5845
5845
|
if (this._opened) return;
|
package/package.json
CHANGED
|
File without changes
|