@team-attention/hoyeon-cli 1.1.1 → 1.1.2
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/cli.js
CHANGED
|
@@ -8116,9 +8116,11 @@ var dev_spec_v4_schema_default = {
|
|
|
8116
8116
|
ts: { type: "string" },
|
|
8117
8117
|
type: {
|
|
8118
8118
|
type: "string",
|
|
8119
|
-
enum: ["spec_created", "task_start", "task_done", "tasks_changed", "spec_updated"]
|
|
8119
|
+
enum: ["spec_created", "task_start", "task_done", "tasks_changed", "spec_updated", "scenario_verified"]
|
|
8120
8120
|
},
|
|
8121
8121
|
task: { type: "string" },
|
|
8122
|
+
scenario: { type: "string" },
|
|
8123
|
+
status: { type: "string" },
|
|
8122
8124
|
summary: { type: "string" },
|
|
8123
8125
|
detail: { type: "string" }
|
|
8124
8126
|
}
|
|
@@ -8962,9 +8964,11 @@ var dev_spec_v5_schema_default = {
|
|
|
8962
8964
|
ts: { type: "string" },
|
|
8963
8965
|
type: {
|
|
8964
8966
|
type: "string",
|
|
8965
|
-
enum: ["spec_created", "task_start", "task_done", "tasks_changed", "spec_updated"]
|
|
8967
|
+
enum: ["spec_created", "task_start", "task_done", "tasks_changed", "spec_updated", "scenario_verified"]
|
|
8966
8968
|
},
|
|
8967
8969
|
task: { type: "string" },
|
|
8970
|
+
scenario: { type: "string" },
|
|
8971
|
+
status: { type: "string" },
|
|
8968
8972
|
summary: { type: "string" },
|
|
8969
8973
|
detail: { type: "string" }
|
|
8970
8974
|
}
|
|
@@ -12023,7 +12027,7 @@ async function main() {
|
|
|
12023
12027
|
process.exit(0);
|
|
12024
12028
|
}
|
|
12025
12029
|
if (args[0] === "--version") {
|
|
12026
|
-
const version = true ? "1.1.
|
|
12030
|
+
const version = true ? "1.1.2" : "dev";
|
|
12027
12031
|
process.stdout.write(`hoyeon-cli v${version}
|
|
12028
12032
|
`);
|
|
12029
12033
|
process.exit(0);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@team-attention/hoyeon-cli",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Developer CLI for managing dev workflow state",
|
|
6
6
|
"bin": {
|
|
@@ -14,15 +14,15 @@
|
|
|
14
14
|
"publishConfig": {
|
|
15
15
|
"access": "public"
|
|
16
16
|
},
|
|
17
|
+
"scripts": {
|
|
18
|
+
"build": "node build.mjs",
|
|
19
|
+
"test": "node --test tests/*.test.mjs"
|
|
20
|
+
},
|
|
17
21
|
"dependencies": {
|
|
18
22
|
"ajv": "^8.0.0",
|
|
19
23
|
"ajv-formats": "^3.0.0"
|
|
20
24
|
},
|
|
21
25
|
"devDependencies": {
|
|
22
26
|
"esbuild": "^0.27.3"
|
|
23
|
-
},
|
|
24
|
-
"scripts": {
|
|
25
|
-
"build": "node build.mjs",
|
|
26
|
-
"test": "node --test tests/*.test.mjs"
|
|
27
27
|
}
|
|
28
|
-
}
|
|
28
|
+
}
|
|
@@ -489,9 +489,11 @@
|
|
|
489
489
|
"ts": { "type": "string" },
|
|
490
490
|
"type": {
|
|
491
491
|
"type": "string",
|
|
492
|
-
"enum": ["spec_created", "task_start", "task_done", "tasks_changed", "spec_updated"]
|
|
492
|
+
"enum": ["spec_created", "task_start", "task_done", "tasks_changed", "spec_updated", "scenario_verified"]
|
|
493
493
|
},
|
|
494
494
|
"task": { "type": "string" },
|
|
495
|
+
"scenario": { "type": "string" },
|
|
496
|
+
"status": { "type": "string" },
|
|
495
497
|
"summary": { "type": "string" },
|
|
496
498
|
"detail": { "type": "string" }
|
|
497
499
|
}
|
|
@@ -583,9 +583,11 @@
|
|
|
583
583
|
"ts": { "type": "string" },
|
|
584
584
|
"type": {
|
|
585
585
|
"type": "string",
|
|
586
|
-
"enum": ["spec_created", "task_start", "task_done", "tasks_changed", "spec_updated"]
|
|
586
|
+
"enum": ["spec_created", "task_start", "task_done", "tasks_changed", "spec_updated", "scenario_verified"]
|
|
587
587
|
},
|
|
588
588
|
"task": { "type": "string" },
|
|
589
|
+
"scenario": { "type": "string" },
|
|
590
|
+
"status": { "type": "string" },
|
|
589
591
|
"summary": { "type": "string" },
|
|
590
592
|
"detail": { "type": "string" }
|
|
591
593
|
}
|