claude-issue-solver 1.1.0 → 1.2.0
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 +3 -2
package/dist/index.js
CHANGED
|
@@ -13,11 +13,13 @@ const solve_1 = require("./commands/solve");
|
|
|
13
13
|
const pr_1 = require("./commands/pr");
|
|
14
14
|
const clean_1 = require("./commands/clean");
|
|
15
15
|
const select_1 = require("./commands/select");
|
|
16
|
+
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
|
17
|
+
const packageJson = require('../package.json');
|
|
16
18
|
const program = new commander_1.Command();
|
|
17
19
|
program
|
|
18
20
|
.name('claude-issue')
|
|
19
21
|
.description('Automatically solve GitHub issues using Claude Code')
|
|
20
|
-
.version(
|
|
22
|
+
.version(packageJson.version);
|
|
21
23
|
// Check requirements before any command
|
|
22
24
|
program.hook('preAction', () => {
|
|
23
25
|
if (!(0, git_1.isGitRepo)()) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-issue-solver",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "Automatically solve GitHub issues using Claude Code",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -40,6 +40,7 @@
|
|
|
40
40
|
"node": ">=18.0.0"
|
|
41
41
|
},
|
|
42
42
|
"files": [
|
|
43
|
-
"dist"
|
|
43
|
+
"dist",
|
|
44
|
+
"package.json"
|
|
44
45
|
]
|
|
45
46
|
}
|