@ttoss/postgresdb-cli 0.1.8 → 0.1.9

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
@@ -20,12 +20,7 @@ var getDbDynamically = async ({
20
20
  const result = esbuild.buildSync({
21
21
  bundle: true,
22
22
  entryPoints: [entryPoint],
23
- /**
24
- * ttoss packages cannot be market as external because it'd break the CI.
25
- * On CI, ttoss packages point to the TS main file, not the compiled
26
- * ones. See more details here https://github.com/ttoss/ttoss/issues/541.
27
- */
28
- external: ["pg", "sequelize", "sequelize-typescript"],
23
+ external: ["@ttoss/postgresdb"],
29
24
  format: "esm",
30
25
  outfile,
31
26
  platform: "node",
@@ -81,7 +76,7 @@ var sync = async ({
81
76
  // package.json
82
77
  var package_default = {
83
78
  name: "@ttoss/postgresdb-cli",
84
- version: "0.1.8",
79
+ version: "0.1.9",
85
80
  description: "A library to handle PostgreSQL database actions through the command line",
86
81
  license: "MIT",
87
82
  author: "ttoss",
@@ -101,7 +96,6 @@ var package_default = {
101
96
  },
102
97
  sideEffects: false,
103
98
  dependencies: {
104
- "@ttoss/postgresdb": "workspace:^",
105
99
  commander: "^12.1.0",
106
100
  dotenv: "^16.4.5",
107
101
  esbuild: "^0.24.0",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ttoss/postgresdb-cli",
3
- "version": "0.1.8",
3
+ "version": "0.1.9",
4
4
  "description": "A library to handle PostgreSQL database actions through the command line",
5
5
  "license": "MIT",
6
6
  "author": "ttoss",
@@ -25,8 +25,7 @@
25
25
  "commander": "^12.1.0",
26
26
  "dotenv": "^16.4.5",
27
27
  "esbuild": "^0.24.0",
28
- "sequelize-erd": "^1.3.1",
29
- "@ttoss/postgresdb": "^0.2.10"
28
+ "sequelize-erd": "^1.3.1"
30
29
  },
31
30
  "devDependencies": {
32
31
  "jest": "^29.7.0",