Skip to content

Commit

Permalink
chore(deps): bump expo sdk from 41 to 42 (#153)
Browse files Browse the repository at this point in the history
  • Loading branch information
tiagoheliob committed Sep 29, 2021
1 parent cba9265 commit 4597942
Show file tree
Hide file tree
Showing 4 changed files with 883 additions and 1,176 deletions.
28 changes: 14 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,37 +17,37 @@
"@otplib/core": "^12.0.1",
"@otplib/plugin-base32-enc-dec": "^12.0.1",
"@otplib/plugin-crypto-js": "^12.0.1",
"@react-native-async-storage/async-storage": "^1.13.0",
"@react-native-async-storage/async-storage": "~1.15.0",
"@react-native-community/masked-view": "0.1.10",
"@react-navigation/native": "5.9.4",
"@react-navigation/stack": "5.14.5",
"aes-js": "3.1.2",
"buffer": "^6.0.3",
"color": "^3.1.3",
"dotenv": "^9.0.0",
"expo": "^41.0.0",
"expo": "^42.0.0",
"expo-app-loading": "^1.0.3",
"expo-auth-session": "~3.2.3",
"expo-barcode-scanner": "~10.1.2",
"expo-clipboard": "~1.0.2",
"expo-constants": "^10.1.3",
"expo-notifications": "^0.11.6",
"expo-random": "~11.1.2",
"expo-secure-store": "~10.1.0",
"expo-auth-session": "~3.3.1",
"expo-barcode-scanner": "~10.2.2",
"expo-clipboard": "~1.1.0",
"expo-constants": "~11.0.1",
"expo-notifications": "~0.12.3",
"expo-random": "~11.2.0",
"expo-secure-store": "~10.2.0",
"expo-status-bar": "~1.0.4",
"expo-web-browser": "~9.1.0",
"expo-web-browser": "~9.2.0",
"firebase": "8.2.3",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-native": "https://github.com/expo/react-native/archive/sdk-41.0.0.tar.gz",
"react-native": "https://github.com/expo/react-native/archive/sdk-42.0.0.tar.gz",
"react-native-countdown-circle-timer": "^2.5.3",
"react-native-gesture-handler": "~1.10.2",
"react-native-get-random-values": "~1.7.0",
"react-native-paper": "^4.9.2",
"react-native-reanimated": "~2.1.0",
"react-native-reanimated": "~2.2.0",
"react-native-root-toast": "^3.2.1",
"react-native-safe-area-context": "3.2.0",
"react-native-screens": "~3.0.0",
"react-native-screens": "~3.4.0",
"react-native-svg": "12.1.1",
"react-native-web": "~0.13.12",
"url-otpauth": "^2.0.0",
Expand All @@ -68,7 +68,7 @@
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "4",
"jest": "^27.0.6",
"jest-expo": "^41.0.0",
"jest-expo": "^42.0.0",
"lint-staged": ">=11",
"prettier": "^2.3.2"
},
Expand Down
15 changes: 9 additions & 6 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import 'react-native-get-random-values'
import React from 'react'
import { StatusBar } from 'expo-status-bar'
import { Provider as PaperProvider } from 'react-native-paper'
import { RootSiblingParent } from 'react-native-root-siblings'

import { AuthenticationProvider } from './context/authentication'
import { SecretsProvider } from './context/secrets'
Expand All @@ -11,12 +12,14 @@ import Main from './Main'
export default function App() {
return (
<AuthenticationProvider>
<SecretsProvider>
<PaperProvider theme={theme}>
<Main />
<StatusBar style="auto" />
</PaperProvider>
</SecretsProvider>
<RootSiblingParent>
<SecretsProvider>
<PaperProvider theme={theme}>
<Main />
<StatusBar style="auto" />
</PaperProvider>
</SecretsProvider>
</RootSiblingParent>
</AuthenticationProvider>
)
}
2 changes: 1 addition & 1 deletion src/components/Secret/CopyableInfo.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react'
import { IconButton } from 'react-native-paper'
import { StyleSheet, View, Text } from 'react-native'
import Clipboard from 'expo-clipboard'
import * as Clipboard from 'expo-clipboard'
import Toast from 'react-native-root-toast'

const styles = StyleSheet.create({
Expand Down
Loading

0 comments on commit 4597942

Please sign in to comment.