@simonfestl/husky-cli 0.9.0 → 0.9.1
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/dist/index.js +1 -1
- package/package.json +2 -1
package/dist/index.js
CHANGED
|
@@ -25,7 +25,7 @@ const program = new Command();
|
|
|
25
25
|
program
|
|
26
26
|
.name("husky")
|
|
27
27
|
.description("CLI for Huskyv0 Task Orchestration with Claude Agent")
|
|
28
|
-
.version("0.
|
|
28
|
+
.version("0.9.1");
|
|
29
29
|
program.addCommand(taskCommand);
|
|
30
30
|
program.addCommand(configCommand);
|
|
31
31
|
program.addCommand(agentCommand);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simonfestl/husky-cli",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.1",
|
|
4
4
|
"description": "CLI for Huskyv0 Task Orchestration with Claude Agent SDK",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
},
|
|
10
10
|
"scripts": {
|
|
11
11
|
"build": "tsc",
|
|
12
|
+
"postinstall": "chmod +x ./dist/index.js 2>/dev/null || true",
|
|
12
13
|
"dev": "tsc --watch",
|
|
13
14
|
"start": "node dist/index.js",
|
|
14
15
|
"test": "vitest run",
|