Skip to content

Commit 0ea5c4b

Browse files
committed
Add .npmignore and move glob to devDependencies
1 parent 1933faf commit 0ea5c4b

File tree

2 files changed

+92
-1
lines changed

2 files changed

+92
-1
lines changed

.npmignore

Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
# JS
2+
node_modules
3+
yarn.lock
4+
5+
# Project files
6+
CONTRIBUTORS.md
7+
CONTRIBUTING.md
8+
CODE_OF_CONDUCT.md
9+
10+
# Config files
11+
.babelrc
12+
babel.config.js
13+
.editorconfig
14+
.eslintrc
15+
.flowconfig
16+
.watchmanconfig
17+
jsconfig.json
18+
.npmrc
19+
.gitattributes
20+
.circleci
21+
*.coverage.json
22+
.opensource
23+
.circleci
24+
.eslintignore
25+
codecov.yml
26+
27+
# Scripts
28+
scripts/
29+
30+
# Example
31+
img/
32+
example/
33+
app.json
34+
35+
# Android
36+
android/*/build/
37+
android/gradlew
38+
android/build
39+
android/gradlew.bat
40+
android/gradle/
41+
android/com_crashlytics_export_strings.xml
42+
android/local.properties
43+
android/.gradle/
44+
android/.signing/
45+
android/.idea/gradle.xml
46+
android/.idea/libraries/
47+
android/.idea/workspace.xml
48+
android/.idea/tasks.xml
49+
android/.idea/.name
50+
android/.idea/compiler.xml
51+
android/.idea/copyright/profiles_settings.xml
52+
android/.idea/encodings.xml
53+
android/.idea/misc.xml
54+
android/.idea/modules.xml
55+
android/.idea/scopes/scope_settings.xml
56+
android/.idea/vcs.xml
57+
android/*.iml
58+
android/.settings
59+
60+
# iOS
61+
ios/*.xcodeproj/xcuserdata
62+
*.pbxuser
63+
*.mode1v3
64+
*.mode2v3
65+
*.perspectivev3
66+
*.xcuserstate
67+
project.xcworkspace/
68+
xcuserdata/
69+
ios/build/
70+
71+
# Misc
72+
.DS_Store
73+
.DS_Store?
74+
*.DS_Store
75+
coverage.android.json
76+
coverage.ios.json
77+
coverage
78+
npm-debug.log
79+
.github
80+
._*
81+
.Spotlight-V100
82+
.Trashes
83+
ehthumbs.db
84+
Thumbs.dbandroid/gradle
85+
docs
86+
.idea
87+
tests/
88+
bin/test.js
89+
codorials
90+
.vscode
91+
.nyc_output

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
},
99
"dependencies": {
1010
"base-64": "0.1.0",
11-
"glob": "7.0.6"
11+
"glob": "^7.1.6"
1212
},
1313
"keywords": [
1414
"react-native",

0 commit comments

Comments
 (0)