Skip to content

Commit

Permalink
Cleanup Deps
Browse files Browse the repository at this point in the history
  • Loading branch information
maennchen committed May 8, 2023
1 parent d8aeeb9 commit 7ae0b13
Show file tree
Hide file tree
Showing 10 changed files with 1,923 additions and 1,605 deletions.
4 changes: 3 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,6 @@
/apollo/schema.ts
/dist/
/compiled-lang/
/web-build/
/web-build/
/android/
/ios/
3 changes: 2 additions & 1 deletion .expo-shared/assets.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
"0e193895db3e9b6c9773daac6f35f7e6943d1edb45f09843d5534577bbe5c8aa": true,
"cedbc812e51ffd3dc733f73e28c7c3485fe87ee3f0f59653e8fe55e2a8a3022c": true,
"6438879b605265b9eb691e777c4f5cfb790aafc7e1fdbf5a76a873e3d59bd871": true,
"b187dbefa17e8fa1e5daf985199e006e25eca0a87c4c5a1cbd002b7b06ed90b8": true
"b187dbefa17e8fa1e5daf985199e006e25eca0a87c4c5a1cbd002b7b06ed90b8": true,
"c67f996bd51d5a8d775378b2079919e9b257ab92321af745258212e878b1cf60": true
}
46 changes: 29 additions & 17 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,25 @@
node_modules

node_modules/
.expo/
dist/
npm-debug.*
*.jks
*.p8
*.p12
*.key
*.mobileprovision
*.orig.*
web-build/

# macOS
.DS_Store

# Temporary files created by Metro to check the health of the file watcher
.metro-health-check*

# @generated expo-cli sync-e7dcf75f4e856f7b6f3239b3f3a7dd614ee755a8
# Compiled Translations
/compiled-lang/
/apollo/schema.ts
# @generated expo-cli sync-647791c5bd841d5c91864afb91c302553d300921
# The following patterns were generated by expo-cli

# OSX
Expand Down Expand Up @@ -37,35 +54,30 @@ build/
local.properties
*.iml
*.hprof
.cxx/
*.keystore
!debug.keystore

# node.js
#
node_modules/
npm-debug.log
yarn-error.log

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

# Bundle artifacts
*.jsbundle

# CocoaPods
/ios/Pods/

# Temporary files created by Metro to check the health of the file watcher
.metro-health-check*

# Expo
.expo/
web-build/
dist/
/android
/ios

# @end expo-cli
ios/

index.js

# Compiled Translations
/compiled-lang/
/apollo/schema.ts
# @end expo-cli
4 changes: 3 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,6 @@
/apollo/schema.ts
/dist/
/compiled-lang/
/web-build/
/web-build/
/android/
/ios/
6 changes: 4 additions & 2 deletions app.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"orientation": "default",
"primaryColor": "#32ad9a",
"icon": "./assets/icon.png",
"userInterfaceStyle": "light",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
Expand All @@ -31,7 +32,7 @@
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#FFFFFF"
"backgroundColor": "#ffffff"
},
"package": "io.athena_logistics.athena_rn"
},
Expand All @@ -45,6 +46,7 @@
},
"runtimeVersion": {
"policy": "sdkVersion"
}
},
"plugins": ["expo-localization"]
}
}
Binary file modified assets/aufgetischt-map.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 1 addition & 2 deletions components/native/NativeButton.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import React from 'react';
import { Button } from 'react-native';
import { GestureResponderEvent } from 'react-native-modal';
import { Button, GestureResponderEvent } from 'react-native';
import colors from '../../constants/colors';

export default function NativeButton({
Expand Down
8 changes: 8 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import { registerRootComponent } from 'expo';

import App from './App';

// registerRootComponent calls AppRegistry.registerComponent('main', () => App);
// It also ensures that whether you load the app in Expo Go or in a native build,
// the environment is set up appropriately
registerRootComponent(App);
Loading

0 comments on commit 7ae0b13

Please sign in to comment.