We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2bc11f0 commit 37e49ceCopy full SHA for 37e49ce
index.js
@@ -6,6 +6,7 @@ const chalk = require('chalk');
6
const fs = require('fs');
7
const path = require('path');
8
const { execSync } = require('child_process');
9
+const packageJson = require('./package.json');
10
11
// Get the current directory name for default output file
12
const getCurrentDirectoryName = () => {
@@ -17,7 +18,7 @@ const getCurrentDirectoryName = () => {
17
18
program
19
.name('code2prompt-manager')
20
.description('A CLI tool to manage code2prompt file size limits')
- .version('1.0.0');
21
+ .version(packageJson.version);
22
23
// Command line options
24
0 commit comments