Added packages/*/dist/ and packages/*/build/ to .gitignore to prevent committing build artifacts from workspace packages. This addresses ChatGPT feedback about packages/polling-contracts/dist/ being committed. Workspace packages should build during CI/publish, not commit dist/ artifacts. Verification: - .gitignore updated ✅ - No dist/ artifacts should be committed ✅
82 lines
971 B
Plaintext
82 lines
971 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
npm-debug.log
|
|
yarn-debug.log
|
|
yarn-error.log
|
|
|
|
# Build output
|
|
dist/
|
|
build/
|
|
*.tsbuildinfo
|
|
|
|
# Workspace package build outputs
|
|
packages/*/dist/
|
|
packages/*/build/
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Gradle build cache (root level)
|
|
.gradle/
|
|
|
|
# Android
|
|
android/app/build/
|
|
android/build/
|
|
android/gradle/
|
|
android/gradlew
|
|
android/gradlew.bat
|
|
android/.gradle/
|
|
android/local.properties
|
|
android/.idea/
|
|
android/*.iml
|
|
|
|
# iOS
|
|
ios/Pods/
|
|
ios/build/
|
|
ios/Podfile.lock
|
|
ios/.xcode.env.local
|
|
ios/DerivedData/
|
|
ios/*.xcworkspace/
|
|
ios/*.xcodeproj/*
|
|
!ios/*.xcodeproj/project.pbxproj
|
|
!ios/*.xcodeproj/xcshareddata/
|
|
!ios/*.xcworkspace/contents.xcworkspacedata
|
|
|
|
# Testing
|
|
coverage/
|
|
.nyc_output/
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
.cache/
|
|
*.lock
|
|
*.bin
|
|
workflow/
|
|
screenshots/
|
|
*.zip
|
|
*.gz
|
|
*.tar.gz
|
|
docs.tar.gz
|
|
|
|
# Build reports and caches
|
|
build/reports/
|
|
.gradle/nb-cache/
|
|
android/.gradle/
|