Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MOB-10208] Update .npmignore to include additional default ignores and test files #611

Merged
merged 5 commits into from
Jan 6, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
102 changes: 94 additions & 8 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,96 @@
integration-testing
# Default ignores
node_modules/
*.swp
.DS_Store
tmp/
temp/
*.tmp

# Test files
jest.config.js
node_modules
package-lock.json
yarn.lock
tsconfig.json
integration-testing/
__tests__/
__mocks__/
*.test.ts
*.test.tsx
*.spec.ts
*.spec.tsx

# Build output
build/
dist/

# IDE and editor files
.idea/
.vscode/
jsconfig.json

# Native build artifacts
ios/build/
android/app/build/

# Xcode
build/
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata
*.xccheckout
*.moved-aside
DerivedData
*.hmap
*.ipa
*.xcuserstate
project.xcworkspace

# Android/IJ
.classpath
.cxx
.gradle
.idea
.project
.settings
local.properties
android.iml

# Crashlytics plugin (for Android Studio and IntelliJ)
com_crashlytics_export_strings.xml
crashlytics.properties
crashlytics-build.properties
fabric.properties

# Logs and databases:
*.log
npm-debug.log*
logs

# Npm cache directory:
.npm

# BUCK
buck-out/
\.buckd/
android/app/libs
android/keystores/debug.keystore

# Yarn
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions

# Iterable Internals
.codeclimate.yml
/ts
/docs
/scripts
example/
docs/
scripts/
coverage/
.env
*.local
Loading