Skip to content

Commit 196f744

Browse files
Merge pull request #334 from ZeroGachis/remove-useless-and-problematic-dependencies
Remove useless and problematic dependencies
2 parents 227adb9 + 5577147 commit 196f744

File tree

7 files changed

+74
-391
lines changed

7 files changed

+74
-391
lines changed

README.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,6 @@ Rebuild app and you can use new added font with :
1717
```
1818
<Text style={{fontFamily: 'FontFileNameWithoutExtension'}} />
1919
```
20-
## In case of failure
21-
22-
```
23-
cd android
24-
./gradlew clean
25-
```
2620

2721
## License
2822

babel.config.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
module.exports = {
22
presets: ['module:metro-react-native-babel-preset'],
3-
plugins: ['react-native-reanimated/plugin'],
43
};

jest.config.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,11 @@ const jestConfig: JestConfigWithTsJest = {
1616
testMatch: ['**/?(*.)test.(ts|tsx)'],
1717
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'],
1818
transformIgnorePatterns: [
19-
'node_modules/(?!(@react-native|react-native|react-native-drop-shadow|@gorhom/bottom-sheet|react-native-reanimated|react-native-paper)/)',
19+
'node_modules/(?!(@react-native|react-native|react-native-paper)/)',
2020
],
2121
moduleDirectories: ['node_modules', 'src'],
2222
setupFilesAfterEnv: ['./jest.setup.ts'],
23-
setupFiles: [
24-
'./node_modules/react-native-gesture-handler/jestSetup.js',
25-
'./node_modules/react-native/jest/setup.js',
26-
],
23+
setupFiles: ['./node_modules/react-native/jest/setup.js'],
2724
};
2825

2926
export default jestConfig;

0 commit comments

Comments
 (0)