tracerkit 1.3.7 → 1.3.9
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/README.md +1 -0
- package/dist/bin.js +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
package/dist/bin.js
CHANGED
|
@@ -24,13 +24,13 @@ function o(e) {
|
|
|
24
24
|
}
|
|
25
25
|
function s(r) {
|
|
26
26
|
if (r.includes("--help") || r.includes("-h")) return a;
|
|
27
|
-
if (r.includes("--version") || r.includes("-v")) return ["tracerkit/1.3.
|
|
27
|
+
if (r.includes("--version") || r.includes("-v")) return ["tracerkit/1.3.9"];
|
|
28
28
|
let i = r[0], s = r.slice(1);
|
|
29
29
|
switch (i) {
|
|
30
30
|
case "init": return t(o(s));
|
|
31
31
|
case "update": {
|
|
32
32
|
let t = s.includes("--force"), n = e(o(s.filter((e) => e !== "--force")), { force: t });
|
|
33
|
-
return n.push("", "Updated to tracerkit/1.3.
|
|
33
|
+
return n.push("", "Updated to tracerkit/1.3.9"), n.push("If using Claude Code, restart your session to load changes."), n;
|
|
34
34
|
}
|
|
35
35
|
case "uninstall": return n(o(s));
|
|
36
36
|
default: return a;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tracerkit",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.9",
|
|
4
4
|
"description": "Stack-agnostic spec-driven workflow for AI coding assistants",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": {
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"npm": ">=10.0.0"
|
|
41
41
|
},
|
|
42
42
|
"scripts": {
|
|
43
|
-
"build": "vite build",
|
|
43
|
+
"build": "vite build && chmod +x dist/bin.js",
|
|
44
44
|
"dev": "vite build --watch",
|
|
45
45
|
"test": "vitest",
|
|
46
46
|
"test:run": "vitest run",
|