Skip to content

Commit 6d8492f

Browse files
authored
Merge pull request #611 from Iterable/2.0.0-alpha/MOB-10208-fix-npmignore
[MOB-10208] Update .npmignore to include additional default ignores and test files
2 parents 4a3e470 + 38493d9 commit 6d8492f

File tree

1 file changed

+94
-8
lines changed

1 file changed

+94
-8
lines changed

.npmignore

+94-8
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,96 @@
1-
integration-testing
1+
# Default ignores
2+
node_modules/
3+
*.swp
4+
.DS_Store
5+
tmp/
6+
temp/
7+
*.tmp
8+
9+
# Test files
210
jest.config.js
3-
node_modules
4-
package-lock.json
5-
yarn.lock
6-
tsconfig.json
11+
integration-testing/
12+
__tests__/
13+
__mocks__/
14+
*.test.ts
15+
*.test.tsx
16+
*.spec.ts
17+
*.spec.tsx
18+
19+
# Build output
20+
build/
21+
dist/
22+
23+
# IDE and editor files
24+
.idea/
25+
.vscode/
26+
jsconfig.json
27+
28+
# Native build artifacts
29+
ios/build/
30+
android/app/build/
31+
32+
# Xcode
33+
build/
34+
*.pbxuser
35+
!default.pbxuser
36+
*.mode1v3
37+
!default.mode1v3
38+
*.mode2v3
39+
!default.mode2v3
40+
*.perspectivev3
41+
!default.perspectivev3
42+
xcuserdata
43+
*.xccheckout
44+
*.moved-aside
45+
DerivedData
46+
*.hmap
47+
*.ipa
48+
*.xcuserstate
49+
project.xcworkspace
50+
51+
# Android/IJ
52+
.classpath
53+
.cxx
54+
.gradle
55+
.idea
56+
.project
57+
.settings
58+
local.properties
59+
android.iml
60+
61+
# Crashlytics plugin (for Android Studio and IntelliJ)
62+
com_crashlytics_export_strings.xml
63+
crashlytics.properties
64+
crashlytics-build.properties
65+
fabric.properties
66+
67+
# Logs and databases:
68+
*.log
69+
npm-debug.log*
70+
logs
71+
72+
# Npm cache directory:
73+
.npm
74+
75+
# BUCK
76+
buck-out/
77+
\.buckd/
78+
android/app/libs
79+
android/keystores/debug.keystore
80+
81+
# Yarn
82+
.yarn/*
83+
!.yarn/patches
84+
!.yarn/plugins
85+
!.yarn/releases
86+
!.yarn/sdks
87+
!.yarn/versions
88+
89+
# Iterable Internals
790
.codeclimate.yml
8-
/ts
9-
/docs
10-
/scripts
91+
example/
92+
docs/
93+
scripts/
94+
coverage/
95+
.env
96+
*.local

0 commit comments

Comments
 (0)