From 60d3a74ea140ed93238da2d0b2bdd724e132b492 Mon Sep 17 00:00:00 2001 From: David Snelling Date: Sat, 2 Aug 2025 17:23:03 -0700 Subject: [PATCH] **chore: remove unused CLI package references and update gitignore** - **Codebase Cleanup**: - Removed `cli-package/**` from Vitest configuration exclude paths. - Updated `.gitignore` by removing entries related to `cli-package` and its subdirectories. - **Purpose**: - Simplify the repository and reduce clutter by eliminating obsolete references to the removed CLI package. --- .gitignore | 4 ---- vitest.config.ts | 1 - 2 files changed, 5 deletions(-) diff --git a/.gitignore b/.gitignore index b3739f3e..e08106b2 100644 --- a/.gitignore +++ b/.gitignore @@ -53,14 +53,10 @@ Thumbs.db # Generated files /encoded-image.html /encoded-image.txt -/cli-package/dist/ -/cli-package/node_modules/ /npm /rollup /soulcraft-brainy-*.tgz /data/ -/cli-package/soulcraft-brainy-cli-*.tgz -/web-service-package/node_modules/ # Temporary test files created by AI agents test*.js diff --git a/vitest.config.ts b/vitest.config.ts index aa08362a..ce97d36b 100644 --- a/vitest.config.ts +++ b/vitest.config.ts @@ -17,7 +17,6 @@ export default defineConfig({ 'dist/**', 'scripts/**', 'examples/**', - 'cli-package/**', '*.js' // Exclude old JS test files in root ], // Add environment options to help with TextEncoder issues