greptile 3.1.0 → 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 +34 -0
- package/README.md +66 -25
- package/dist/greptile.js +623 -378
- package/package.json +5 -3
- package/{config-schema.json → settings-schema.json} +11 -3
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": {
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"build": "bun scripts/bundle.ts",
|
|
12
12
|
"postbuild": "bun scripts/link-dev.ts",
|
|
13
13
|
"dev": "bun run src/main.ts",
|
|
14
|
-
"generate:schema": "bun scripts/generate-
|
|
14
|
+
"generate:schema": "bun scripts/generate-settings-schema.ts",
|
|
15
15
|
"lint": "oxlint --type-aware src --ignore-pattern '**/__tests__/**' --ignore-pattern '**/*.test.ts' --ignore-pattern '**/*.test.tsx'",
|
|
16
16
|
"format": "oxfmt src package.json tsconfig.json",
|
|
17
17
|
"prepack": "bun scripts/bundle.ts",
|
|
@@ -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",
|
|
@@ -40,7 +42,7 @@
|
|
|
40
42
|
},
|
|
41
43
|
"files": [
|
|
42
44
|
"dist/greptile.js",
|
|
43
|
-
"
|
|
45
|
+
"settings-schema.json",
|
|
44
46
|
"README.md",
|
|
45
47
|
"CHANGELOG.md"
|
|
46
48
|
],
|
|
@@ -1,17 +1,25 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$id": "https://cdn.jsdelivr.net/npm/greptile@3/
|
|
2
|
+
"$id": "https://cdn.jsdelivr.net/npm/greptile@3/settings-schema.json",
|
|
3
3
|
"title": "Greptile CLI settings",
|
|
4
|
-
"description": "Saved settings for the greptile CLI, normally managed with `greptile
|
|
4
|
+
"description": "Saved settings for the greptile CLI, normally managed with `greptile settings set`. See `greptile settings --help`.",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"properties": {
|
|
7
7
|
"version": {
|
|
8
8
|
"type": "number",
|
|
9
|
-
"description": "
|
|
9
|
+
"description": "Settings file format version, written by the CLI."
|
|
10
10
|
},
|
|
11
11
|
"color": {
|
|
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": {
|