@ttoss/postgresdb-cli 0.1.13 → 0.1.14

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/esm/index.js CHANGED
@@ -6,7 +6,7 @@ import { Command } from "commander";
6
6
  // package.json
7
7
  var package_default = {
8
8
  name: "@ttoss/postgresdb-cli",
9
- version: "0.1.12",
9
+ version: "0.1.13",
10
10
  description: "A library to handle PostgreSQL database actions through the command line",
11
11
  license: "MIT",
12
12
  author: "ttoss",
@@ -28,13 +28,13 @@ var package_default = {
28
28
  dependencies: {
29
29
  commander: "^12.1.0",
30
30
  dotenv: "^16.4.5",
31
- esbuild: "^0.24.0",
31
+ esbuild: "^0.25.5",
32
32
  "sequelize-erd": "^1.3.1"
33
33
  },
34
34
  devDependencies: {
35
35
  "@ttoss/config": "workspace:^",
36
- jest: "^29.7.0",
37
- tsup: "^8.3.5"
36
+ jest: "^30.0.2",
37
+ tsup: "^8.5.0"
38
38
  },
39
39
  keywords: ["database", "postgres", "postgresql"],
40
40
  publishConfig: {
@@ -44,13 +44,13 @@ var package_default = {
44
44
  };
45
45
 
46
46
  // src/erd.ts
47
- import * as fs from "node:fs";
47
+ import * as fs from "fs";
48
48
  import sequelizeErd from "sequelize-erd";
49
49
 
50
50
  // src/getDbDynamically.ts
51
51
  import "dotenv/config";
52
- import * as builtinModules from "node:module";
53
- import path from "node:path";
52
+ import * as builtinModules from "module";
53
+ import path from "path";
54
54
  import * as esbuild from "esbuild";
55
55
  var nodeBuiltins = builtinModules.builtinModules;
56
56
  var getDbDynamically = async ({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ttoss/postgresdb-cli",
3
- "version": "0.1.13",
3
+ "version": "0.1.14",
4
4
  "description": "A library to handle PostgreSQL database actions through the command line",
5
5
  "license": "MIT",
6
6
  "author": "ttoss",
@@ -24,13 +24,13 @@
24
24
  "dependencies": {
25
25
  "commander": "^12.1.0",
26
26
  "dotenv": "^16.4.5",
27
- "esbuild": "^0.24.0",
27
+ "esbuild": "^0.25.5",
28
28
  "sequelize-erd": "^1.3.1"
29
29
  },
30
30
  "devDependencies": {
31
- "jest": "^29.7.0",
32
- "tsup": "^8.3.5",
33
- "@ttoss/config": "^1.35.3"
31
+ "jest": "^30.0.2",
32
+ "tsup": "^8.5.0",
33
+ "@ttoss/config": "^1.35.4"
34
34
  },
35
35
  "keywords": [
36
36
  "database",