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
@@ -16,9 +16,9 @@ export default defineConfig([
'src/core/api/index.js',
'src/core/api/nx-route.js',
'src/core/database/index.js',
'src/core/database/cli.js',
'src/features/setup/index.js',
'src/features/setup/cli.js',
'src/cli/database.js',
'src/cli/setup.js',
'src/core/email/index.js',
'src/core/email/templates/index.js',
'src/core/storage/index.js',