@team-attention/hoyeon-cli 0.8.0 → 0.8.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.
Files changed (2) hide show
  1. package/dist/cli.js +1 -1
  2. 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.8.0" : "dev";
9991
+ const version = true ? "0.8.1" : "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.8.0",
3
+ "version": "0.8.1",
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
+ },
17
20
  "dependencies": {
18
21
  "ajv": "^8.0.0",
19
22
  "ajv-formats": "^3.0.0"
20
23
  },
21
24
  "devDependencies": {
22
25
  "esbuild": "^0.27.3"
23
- },
24
- "scripts": {
25
- "build": "node build.mjs"
26
26
  }
27
- }
27
+ }