duckerd 0.1.3 → 0.1.4

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.
Files changed (2) hide show
  1. package/dist/index.js +2 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -39,9 +39,10 @@ const path = __importStar(require("path"));
39
39
  const child_process_1 = require("child_process");
40
40
  const fs = __importStar(require("fs"));
41
41
  const erd_1 = require("./commands/erd");
42
+ const package_json_1 = require("../package.json");
42
43
  const program = new commander_1.Command();
43
44
  program
44
- .version('0.1.0')
45
+ .version(package_json_1.version)
45
46
  .description('A CLI tool for generating ERD diagrams from DuckDB databases')
46
47
  .option('-d, --database <path>', 'Path to the database file')
47
48
  .option('-t, --theme [theme]', 'Theme of the chart (choices: "default", "forest", "dark", "neutral", default: "default")')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "duckerd",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "A CLI tool for generating ERD diagrams from DuckDB databases",
5
5
  "author": "TobiLG <tobilg@gmail.com>",
6
6
  "repository": {