refactor: consolidate CLI entry points into dedicated cli/ directory

Move `database` and `setup` CLI scripts from their respective feature
directories into a unified `src/cli/` directory. Update `tsup.config.js`
build entries and `package.json` bin paths to reflect the new locations.
This commit is contained in:
2026-04-12 14:39:17 -04:00
parent 54c4ad058d
commit 390133808b
4 changed files with 16 additions and 18 deletions
+2 -2
View File
@@ -23,8 +23,8 @@
"prepublishOnly": "npm run build"
},
"bin": {
"zen-db": "./dist/core/database/cli.js",
"zen-setup": "./dist/features/setup/cli.js"
"zen-db": "./dist/cli/database.js",
"zen-setup": "./dist/cli/setup.js"
},
"dependencies": {
"@headlessui/react": "^2.0.0",