mirror of
https://github.com/tiennm99/ccs.git
synced 2026-07-16 04:18:05 +00:00
- add bunfig.toml to scope bun test to ./tests/ only - add ui test output directory to gitignore - separates main (bun test) and UI (vitest) test runners
44 lines
531 B
Plaintext
44 lines
531 B
Plaintext
# User config files
|
|
# Note: config files now live in ~/.ccs/, not in project directory
|
|
repomix-output.xml
|
|
.ccs.json
|
|
|
|
# macOS
|
|
.DS_Store
|
|
|
|
# Editor
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Plans directory
|
|
plans/
|
|
*.tgz
|
|
|
|
# Node.js
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# TypeScript build output
|
|
dist/
|
|
*.tsbuildinfo
|
|
|
|
# Package lock files (use bun.lock only)
|
|
yarn.lock
|
|
pnpm-lock.yaml
|
|
package-lock.json
|
|
|
|
.claude/active-plan
|
|
|
|
# Logs directory
|
|
logs/
|
|
|
|
# CI-generated files
|
|
.dev-release-info.json
|
|
|
|
# Test coverage
|
|
ui/coverage/ |