fix(cli): point bin to dist/cli.js instead of src/cli.ts

The bin entry pointed to src/cli.ts but only dist/ is published,
causing 'Cannot find module cli-dispatch.js' on global install.
This commit is contained in:
2026-05-13 16:38:54 +08:00
parent dc5fdd7358
commit 10899364d4
+1 -1
View File
@@ -7,7 +7,7 @@
],
"type": "module",
"bin": {
"uncaged-workflow": "src/cli.ts"
"uncaged-workflow": "dist/cli.js"
},
"dependencies": {
"@uncaged/workflow-gateway": "workspace:*",