@vreko/cli 3.1.4 → 3.1.5
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vreko/cli",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.5",
|
|
4
4
|
"description": "Vreko CLI — AI-aware developer intelligence for the command line",
|
|
5
5
|
"homepage": "https://vreko.dev",
|
|
6
6
|
"repository": {
|
|
@@ -79,6 +79,7 @@
|
|
|
79
79
|
"neverthrow": "8.2.0",
|
|
80
80
|
"p-retry": "6.2.0",
|
|
81
81
|
"pino": "9.5.0",
|
|
82
|
+
"pino-pretty": "11.3.0",
|
|
82
83
|
"better-sqlite3": "9.6.0",
|
|
83
84
|
"posthog-node": "3.6.3",
|
|
84
85
|
"quick-lru": "7.0.0",
|
|
@@ -100,16 +101,17 @@
|
|
|
100
101
|
"redis": "4.7.1",
|
|
101
102
|
"resend": "6.2.2",
|
|
102
103
|
"stripe": "19.1.0",
|
|
104
|
+
"ts-pattern": "5.7.1",
|
|
103
105
|
"zod": "3.25.76",
|
|
104
|
-
"@vreko/auth": "0.1.1",
|
|
105
106
|
"@vreko/contracts": "1.0.1",
|
|
106
107
|
"@vreko/intelligence": "0.1.1",
|
|
107
108
|
"@vreko/claims-ledger": "0.1.1",
|
|
108
109
|
"@vreko/local-service": "3.1.0",
|
|
109
|
-
"@vreko/local-service-client": "1.0.0",
|
|
110
|
-
"@vreko/mcp": "0.1.1",
|
|
111
110
|
"@vreko/mcp-client": "0.1.1",
|
|
111
|
+
"@vreko/auth": "0.1.1",
|
|
112
|
+
"@vreko/mcp": "0.1.1",
|
|
112
113
|
"@vreko/mcp-config": "1.0.0",
|
|
114
|
+
"@vreko/local-service-client": "1.0.0",
|
|
113
115
|
"@vreko/sentry-privacy": "0.0.1"
|
|
114
116
|
},
|
|
115
117
|
"optionalDependencies": {
|
|
@@ -48,7 +48,8 @@ let cleanTgzPath = null;
|
|
|
48
48
|
function cleanup() {
|
|
49
49
|
if (existsSync(tmpDir)) rmSync(tmpDir, { recursive: true, force: true });
|
|
50
50
|
if (tgzPath && existsSync(tgzPath)) rmSync(tgzPath, { force: true });
|
|
51
|
-
|
|
51
|
+
// In dry-run mode keep the clean tarball so callers can inspect it
|
|
52
|
+
if (!dryRun && cleanTgzPath && existsSync(cleanTgzPath))
|
|
52
53
|
rmSync(cleanTgzPath, { force: true });
|
|
53
54
|
}
|
|
54
55
|
|