greptile 3.1.1 → 3.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/CHANGELOG.md +25 -0
- package/README.md +53 -12
- package/dist/greptile.js +623 -378
- package/package.json +3 -1
- package/settings-schema.json +8 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "greptile",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.2.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Greptile code review from your terminal",
|
|
6
6
|
"bin": {
|
|
@@ -22,11 +22,13 @@
|
|
|
22
22
|
"@inkjs/ui": "^2.0.0",
|
|
23
23
|
"@pierre/theme": "^1.0.3",
|
|
24
24
|
"@types/bun": "^1.3.11",
|
|
25
|
+
"@types/picomatch": "^4.0.3",
|
|
25
26
|
"@types/react": "^19.2.14",
|
|
26
27
|
"cli-truncate": "^6.0.0",
|
|
27
28
|
"commander": "^15.0.0",
|
|
28
29
|
"ink": "^7.0.3",
|
|
29
30
|
"picocolors": "^1.1.1",
|
|
31
|
+
"picomatch": "^4.0.4",
|
|
30
32
|
"react": "^19.2.6",
|
|
31
33
|
"shiki": "^4.1.0",
|
|
32
34
|
"ssh-config": "^5.1.0",
|
package/settings-schema.json
CHANGED
|
@@ -12,6 +12,14 @@
|
|
|
12
12
|
"type": "boolean",
|
|
13
13
|
"description": "Color output. Set to false for the same effect as always passing --no-color."
|
|
14
14
|
},
|
|
15
|
+
"apiBaseUrl": {
|
|
16
|
+
"type": "string",
|
|
17
|
+
"description": "API base URL for a self-hosted Greptile deployment. Origin only — serve the API at an origin root or dedicated hostname."
|
|
18
|
+
},
|
|
19
|
+
"webBaseUrl": {
|
|
20
|
+
"type": "string",
|
|
21
|
+
"description": "Web dashboard URL for a self-hosted Greptile deployment. Origin only, no path."
|
|
22
|
+
},
|
|
15
23
|
"review": {
|
|
16
24
|
"type": "object",
|
|
17
25
|
"properties": {
|