@malloydata/db-postgres 0.0.130-dev240311164559 → 0.0.130-dev240311202005
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/postgres.spec.js +2 -8
- package/package.json +2 -2
package/dist/postgres.spec.js
CHANGED
|
@@ -23,14 +23,8 @@
|
|
|
23
23
|
*/
|
|
24
24
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
25
|
const postgres_connection_1 = require("./postgres_connection");
|
|
26
|
-
const
|
|
27
|
-
|
|
28
|
-
'postgres').split(',');
|
|
29
|
-
let describe = globalThis.describe;
|
|
30
|
-
if (!envDatabases.includes('postgres')) {
|
|
31
|
-
describe = describe.skip;
|
|
32
|
-
describe.skip = describe;
|
|
33
|
-
}
|
|
26
|
+
const test_1 = require("@malloydata/malloy/test");
|
|
27
|
+
const [describe] = (0, test_1.describeIfDatabaseAvailable)(['postgres']);
|
|
34
28
|
/*
|
|
35
29
|
* !IMPORTANT
|
|
36
30
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@malloydata/db-postgres",
|
|
3
|
-
"version": "0.0.130-
|
|
3
|
+
"version": "0.0.130-dev240311202005",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"prepublishOnly": "npm run build"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@malloydata/malloy": "^0.0.130-
|
|
25
|
+
"@malloydata/malloy": "^0.0.130-dev240311202005",
|
|
26
26
|
"@types/pg": "^8.6.1",
|
|
27
27
|
"pg": "^8.7.1",
|
|
28
28
|
"pg-query-stream": "4.2.3"
|