**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.
This commit is contained in:
David Snelling 2025-08-02 17:23:03 -07:00
parent 773c6b0b71
commit 16193927cb
2 changed files with 0 additions and 5 deletions

4
.gitignore vendored
View file

@ -53,14 +53,10 @@ Thumbs.db
# Generated files # Generated files
/encoded-image.html /encoded-image.html
/encoded-image.txt /encoded-image.txt
/cli-package/dist/
/cli-package/node_modules/
/npm /npm
/rollup /rollup
/soulcraft-brainy-*.tgz /soulcraft-brainy-*.tgz
/data/ /data/
/cli-package/soulcraft-brainy-cli-*.tgz
/web-service-package/node_modules/
# Temporary test files created by AI agents # Temporary test files created by AI agents
test*.js test*.js

View file

@ -17,7 +17,6 @@ export default defineConfig({
'dist/**', 'dist/**',
'scripts/**', 'scripts/**',
'examples/**', 'examples/**',
'cli-package/**',
'*.js' // Exclude old JS test files in root '*.js' // Exclude old JS test files in root
], ],
// Add environment options to help with TextEncoder issues // Add environment options to help with TextEncoder issues