Skip to content

Commit 4633aa3

Browse files
committed
fix: restore CLI deps for TypeScript compilation
1 parent cbaefd5 commit 4633aa3

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.5.5
1+
0.5.6

npx/package.json

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
{
22
"name": "asyncreview",
3-
"version": "0.5.4",
3+
"version": "0.5.5",
44
"description": "AI-powered GitHub PR/Issue reviews from the command line",
55
"type": "module",
66
"bin": {
77
"asyncreview": "./dist/launcher.js"
88
},
99
"scripts": {
1010
"build": "tsc",
11+
"build:runtime": "tsc -p tsconfig.runtime.json",
1112
"dev": "tsc --watch",
1213
"prepublishOnly": "npm run build"
1314
},
@@ -40,11 +41,16 @@
4041
"node": ">=18.0.0"
4142
},
4243
"dependencies": {
44+
"commander": "^12.1.0",
45+
"inquirer": "^9.2.12",
46+
"chalk": "^5.3.0",
47+
"ora": "^8.0.1",
4348
"tar": "^7.0.0"
4449
},
4550
"devDependencies": {
4651
"typescript": "^5.3.3",
4752
"@types/node": "^20.11.0",
53+
"@types/inquirer": "^9.0.7",
4854
"@types/tar": "^6.1.0"
4955
}
50-
}
56+
}

0 commit comments

Comments
 (0)