@esthernandez/vibe-doc 0.2.0 → 0.2.1
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/index.js +3 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -50,10 +50,12 @@ const generator_1 = require("./generator");
|
|
|
50
50
|
const templates_1 = require("./templates");
|
|
51
51
|
const extractor_1 = require("./generator/extractor");
|
|
52
52
|
const program = new commander_1.Command();
|
|
53
|
+
const pkgJsonPath = path.resolve(__dirname, '..', 'package.json');
|
|
54
|
+
const pkgVersion = JSON.parse(fs.readFileSync(pkgJsonPath, 'utf-8')).version;
|
|
53
55
|
program
|
|
54
56
|
.name('vibe-doc')
|
|
55
57
|
.description('AI-powered documentation gap analyzer for any codebase')
|
|
56
|
-
.version(
|
|
58
|
+
.version(pkgVersion);
|
|
57
59
|
/**
|
|
58
60
|
* Scan command: Run artifact scanner and save inventory
|
|
59
61
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@esthernandez/vibe-doc",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "AI-powered documentation gap analyzer and generator for modern codebases. Scans your project, classifies your architecture, and generates professional docs from your existing artifacts.",
|
|
5
5
|
"author": "626Labs LLC",
|
|
6
6
|
"license": "MIT",
|