@team-attention/hoyeon-cli 0.1.0 → 0.8.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/dist/cli.js +1 -1
- package/package.json +5 -5
package/dist/cli.js
CHANGED
|
@@ -9988,7 +9988,7 @@ async function main() {
|
|
|
9988
9988
|
process.exit(0);
|
|
9989
9989
|
}
|
|
9990
9990
|
if (args[0] === "--version") {
|
|
9991
|
-
const version = true ? "0.
|
|
9991
|
+
const version = true ? "0.8.0" : "dev";
|
|
9992
9992
|
process.stdout.write(`hoyeon-cli v${version}
|
|
9993
9993
|
`);
|
|
9994
9994
|
process.exit(0);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@team-attention/hoyeon-cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.8.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Developer CLI for managing dev workflow state",
|
|
6
6
|
"bin": {
|
|
@@ -14,14 +14,14 @@
|
|
|
14
14
|
"publishConfig": {
|
|
15
15
|
"access": "public"
|
|
16
16
|
},
|
|
17
|
-
"scripts": {
|
|
18
|
-
"build": "node build.mjs"
|
|
19
|
-
},
|
|
20
17
|
"dependencies": {
|
|
21
18
|
"ajv": "^8.0.0",
|
|
22
19
|
"ajv-formats": "^3.0.0"
|
|
23
20
|
},
|
|
24
21
|
"devDependencies": {
|
|
25
22
|
"esbuild": "^0.27.3"
|
|
23
|
+
},
|
|
24
|
+
"scripts": {
|
|
25
|
+
"build": "node build.mjs"
|
|
26
26
|
}
|
|
27
|
-
}
|
|
27
|
+
}
|