**build: update .gitignore to exclude temporary test and debug files**

- Added patterns for temporary test files (`test*.js`, `test*.ts`, `temp-test*.js`, `temp-test*.ts`, etc.) to `.gitignore`.
- Included directories `/temp/` and `/temp-tests/` to prevent accidental commits of temporary or debug-related files.

**Purpose**: Ensure cleaner version control by excluding unnecessary temporary and debug files created during development.
This commit is contained in:
David Snelling 2025-07-30 11:01:08 -07:00
parent a6eeba23da
commit ed2deb235b

12
.gitignore vendored
View file

@ -61,3 +61,15 @@ Thumbs.db
/data/
/cli-package/soulcraft-brainy-cli-*.tgz
/web-service-package/node_modules/
# Temporary test files created by AI agents
test*.js
test*.ts
temp-test*.js
temp-test*.ts
reproduction*.js
reproduction*.ts
debug*.js
debug*.ts
/temp/
/temp-tests/