Skip to content

Commit

Permalink
Merge pull request #91 from wednesday-solutions/feat/dependency-fix
Browse files Browse the repository at this point in the history
Feat/dependency fix.   Work in Progress  Do not merge or review
  • Loading branch information
himanshu-wedensday authored Apr 18, 2024
2 parents c2a873f + 939223c commit 3769d60
Show file tree
Hide file tree
Showing 65 changed files with 8,475 additions and 11,856 deletions.
9 changes: 4 additions & 5 deletions App.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,18 @@
* @format
*/

import { AppRegistry } from 'react-native';
import { registerRootComponent } from 'expo';
import App from '@app/app';
import { name as appName } from './app.json';

if (!window.Intl) {
new Promise(resolve => {
resolve(import('intl'));
})
.then(() => Promise.all([import('intl/locale-data/jsonp/en.js')]))
.then(() => AppRegistry.registerComponent(appName, () => App))
.then(() => Promise.all([import('intl/locale-data/jsonp/en')]))
.then(() => registerRootComponent(App))
.catch(alert);
} else {
AppRegistry.registerComponent(appName, () => App);
registerRootComponent(App);
}

export default App;
6 changes: 0 additions & 6 deletions android/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,5 @@ local.properties
*.iml
*.hprof

# BUCK
buck-out/
\.buckd/
*.keystore
!debug.keystore

# Bundle artifacts
*.jsbundle
55 changes: 0 additions & 55 deletions android/app/BUCK

This file was deleted.

Loading

1 comment on commit 3769d60

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.
Category Percentage Covered / Total
🟢 Statements 95.12% 195/205
🟢 Branches 87.18% 34/39
🟢 Functions 93.51% 72/77
🟢 Lines 95.58% 173/181

Test suite run success

54 tests passing in 24 suites.

Report generated by 🧪jest coverage report action from 3769d60

Please sign in to comment.