mirror of
https://github.com/jeffusion/gitea-ai-assistant.git
synced 2026-03-27 10:05:50 +00:00
chore: update .gitignore and add bunfig.toml for test isolation
Exclude runtime data (data/), SQLite WAL files, frontend lock file, and build artifacts. Add bunfig.toml to scope bun test to src/ only, preventing it from picking up frontend vitest test files. Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode)
This commit is contained in:
14
.gitignore
vendored
14
.gitignore
vendored
@@ -4,3 +4,17 @@ dist/
|
|||||||
config-overrides.json
|
config-overrides.json
|
||||||
.sisyphus/
|
.sisyphus/
|
||||||
e2e/.env.e2e
|
e2e/.env.e2e
|
||||||
|
|
||||||
|
# Runtime data
|
||||||
|
data/
|
||||||
|
|
||||||
|
# Frontend build artifacts
|
||||||
|
public/
|
||||||
|
|
||||||
|
# Test temporaries
|
||||||
|
/tmp/
|
||||||
|
*.db-shm
|
||||||
|
*.db-wal
|
||||||
|
|
||||||
|
# Lock files (frontend has its own)
|
||||||
|
frontend/package-lock.json
|
||||||
|
|||||||
2
bunfig.toml
Normal file
2
bunfig.toml
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
[test]
|
||||||
|
root = "./src"
|
||||||
Reference in New Issue
Block a user