refactor: remove deprecated hook templates and related utilities

- Deleted hook-prompt-renderer.js and hook-prompts.config.js as they are no longer needed.
- Removed path-resolver.js, stop.js, and user-prompt-submit.js for streamlining the codebase.
- Updated package.json scripts to point to new build and publish scripts.
- Adjusted test imports to reflect new directory structure after removing unnecessary files.
This commit is contained in:
Alex Newman
2025-10-15 20:24:08 -04:00
parent 01b477da26
commit edeed2ee2c
17 changed files with 56 additions and 1857 deletions
+2 -2
View File
@@ -4,8 +4,8 @@
* Tests database schema and hook functions
*/
import { DatabaseManager, migrations } from './src/services/sqlite/index.js';
import { HooksDatabase } from './src/services/sqlite/HooksDatabase.js';
import { DatabaseManager, migrations } from '../src/services/sqlite/index.js';
import { HooksDatabase } from '../src/services/sqlite/HooksDatabase.js';
import path from 'path';
import fs from 'fs';