Skip to content

Commit 77010b6

Browse files
committed
clean up ignores; minor bump react-native
1 parent ab8c3f5 commit 77010b6

File tree

5 files changed

+40
-45
lines changed

5 files changed

+40
-45
lines changed

.npmignore

Lines changed: 10 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,19 @@
1-
# directories
2-
node_modules/
3-
example/
41
__tests__/
5-
coverage/
62
.github/
7-
screenshots/
3+
.yarn/
84
assets/
9-
.vscode/
10-
11-
# files
5+
coverage/
6+
example/
7+
node_modules/
128
.DS_Store
13-
npm-debug.log
149
.gitignore
1510
.npmignore
1611
.prettierignore
17-
.prettierrc.js
12+
.yarnrc.yml
13+
babel.config.mjs
1814
eslint.config.mjs
19-
babel.config.js
20-
jest.config.js
15+
jest.config.mjs
16+
npm-debug.log
17+
prettier.config.mjs
2118
tsconfig.json
22-
.yarnrc.yml
23-
24-
# Yarn
25-
.yarn/
26-
.yarn/install-state.gz
27-
.yarn/patches
28-
.yarn/plugins
29-
.yarn/releases
30-
.yarn/sdks
31-
.yarn/versions
19+
yarn.lock

.prettierignore

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
1-
node_modules/
1+
.yarn/
22
assets/
33
coverage/
4-
.yarn/
5-
.expo/
6-
yarn.lock
7-
LICENSE
4+
example/.expo/
5+
example/.yarn/
6+
example/assets/
7+
example/node_modules/
8+
example/.gitignore
9+
example/yarn.lock
10+
node_modules/
811
.gitignore
912
.npmignore
1013
.prettierignore
11-
tsconfig.json
12-
.yarnrc.yml
14+
.yarnrc.yml
15+
LICENSE
16+
yarn.lock

eslint.config.mjs

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,18 +61,21 @@ export default defineConfig([
6161
language: 'json/jsonc',
6262
},
6363
globalIgnores([
64-
'node_modules/*',
64+
'.yarn/*',
6565
'assets/*',
6666
'coverage/*',
67-
'example/node_modules/*',
6867
'example/.expo/*',
6968
'example/.yarn/*',
70-
'.expo/*',
71-
'.yarn/*',
72-
'yarn.lock',
73-
'LICENSE',
69+
'example/assets/*',
70+
'example/node_modules/*',
71+
'example/.gitignore',
72+
'example/yarn.lock',
73+
'node_modules/*',
7474
'.gitignore',
7575
'.npmignore',
76+
'.prettierignore',
7677
'.yarnrc.yml',
78+
'LICENSE',
79+
'yarn.lock',
7780
]),
7881
]);

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@
3333
"@eslint/js": "9.35.0",
3434
"@eslint/json": "0.13.2",
3535
"@eslint/markdown": "7.2.0",
36-
"@react-native/babel-preset": "0.81.4",
37-
"@react-native/eslint-config": "0.81.4",
38-
"@react-native/metro-config": "0.81.4",
39-
"@react-native/typescript-config": "0.81.4",
36+
"@react-native/babel-preset": "0.81.5",
37+
"@react-native/eslint-config": "0.81.5",
38+
"@react-native/metro-config": "0.81.5",
39+
"@react-native/typescript-config": "0.81.5",
4040
"@testing-library/react-native": "13.3.3",
4141
"@types/jest": "30.0.0",
4242
"@types/react": "19.1.0",
@@ -50,7 +50,7 @@
5050
"jest": "30.1.3",
5151
"prettier": "3.6.2",
5252
"react": "19.1.0",
53-
"react-native": "0.81.4",
53+
"react-native": "0.81.5",
5454
"react-test-renderer": "19.1.0",
5555
"ts-jest": "29.4.1",
5656
"typescript": "5.8.3",
@@ -59,5 +59,5 @@
5959
"engines": {
6060
"node": ">=20"
6161
},
62-
"packageManager": "yarn@4.9.4"
62+
"packageManager": "yarn@4.12.0"
6363
}

tsconfig.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "@react-native/typescript-config",
3-
"include": ["**/*.ts", "**/*.tsx"],
4-
"exclude": ["**/node_modules", "**/Pods"]
5-
}
2+
"extends": "@react-native/typescript-config",
3+
"include": ["**/*.ts", "**/*.tsx"],
4+
"exclude": ["**/node_modules", "**/Pods"]
5+
}

0 commit comments

Comments
 (0)