@snapcommit/cli 3.8.7 → 3.8.8
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 +4 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -8,6 +8,7 @@ const commander_1 = require("commander");
|
|
|
8
8
|
const chalk_1 = __importDefault(require("chalk"));
|
|
9
9
|
const dotenv_1 = require("dotenv");
|
|
10
10
|
const path_1 = __importDefault(require("path"));
|
|
11
|
+
const fs_1 = require("fs");
|
|
11
12
|
const version_1 = require("./utils/version");
|
|
12
13
|
const commit_1 = require("./commands/commit");
|
|
13
14
|
const stats_1 = require("./commands/stats");
|
|
@@ -24,6 +25,8 @@ const github_connect_1 = require("./commands/github-connect");
|
|
|
24
25
|
const repl_1 = require("./repl");
|
|
25
26
|
// Load environment variables from root .env
|
|
26
27
|
(0, dotenv_1.config)({ path: path_1.default.join(__dirname, '../../.env') });
|
|
28
|
+
// Read version from package.json
|
|
29
|
+
const packageJson = JSON.parse((0, fs_1.readFileSync)(path_1.default.join(__dirname, '../package.json'), 'utf-8'));
|
|
27
30
|
const program = new commander_1.Command();
|
|
28
31
|
// Check for updates (async, non-blocking)
|
|
29
32
|
(0, version_1.checkForUpdates)().then((result) => {
|
|
@@ -40,7 +43,7 @@ const program = new commander_1.Command();
|
|
|
40
43
|
program
|
|
41
44
|
.name('snapcommit')
|
|
42
45
|
.description('Snap. Commit. Track. - Instant AI commits with beautiful stats')
|
|
43
|
-
.version(
|
|
46
|
+
.version(packageJson.version);
|
|
44
47
|
// Command: devflow commit
|
|
45
48
|
program
|
|
46
49
|
.command('commit')
|