Skip to content

Commit

Permalink
Merge branch 'develop' into fix-moment-helper-locales
Browse files Browse the repository at this point in the history
  • Loading branch information
zaphod534 authored Nov 3, 2020
2 parents 4f482a4 + bfa4dff commit 787fb69
Show file tree
Hide file tree
Showing 564 changed files with 95,897 additions and 28,379 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ defaults: &defaults

macos: &macos
macos:
xcode: "11.5.0"
xcode: "12.1.0"

bash-env: &bash-env
BASH_ENV: "~/.nvm/nvm.sh"
Expand Down Expand Up @@ -347,7 +347,7 @@ jobs:
echo $APP_STORE_CONNECT_API_KEY | base64 --decode > ./fastlane/app_store_connect_api_key.p8
bundle exec fastlane ios release
else
bundle exec fastlane ios build
bundle exec fastlane ios build_fork
fi
working_directory: ios

Expand Down
8 changes: 4 additions & 4 deletions __mocks__/expo-keep-awake.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export default {
activateKeepAwake: () => '',
deactivateKeepAwake: () => ''
};
const activateKeepAwake = () => '';
const deactivateKeepAwake = () => '';

export { activateKeepAwake, deactivateKeepAwake };
8 changes: 4 additions & 4 deletions __mocks__/react-native-gesture-handler.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export const RectButton = () => 'View';
export const RectButton = ({ children }) => children;
export const State = () => 'View';
export const LongPressGestureHandler = () => 'View';
export const BorderlessButton = () => 'View';
export const PanGestureHandler = () => 'View';
export const LongPressGestureHandler = ({ children }) => children;
export const BorderlessButton = ({ children }) => children;
export const PanGestureHandler = ({ children }) => children;
Loading

0 comments on commit 787fb69

Please sign in to comment.