Skip to content

Commit

Permalink
fix: update deps (ios, and)
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanneff committed Sep 29, 2024
1 parent 6509163 commit eac0627
Show file tree
Hide file tree
Showing 57 changed files with 8,662 additions and 9,791 deletions.
1 change: 1 addition & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ module.exports = {
'typescript-sort-keys/string-enum': 'error',
'sort-imports': 'off',
// style
'eslint-comments/no-unused-disable': 'error',
'unicorn/filename-case': 'off',
'unicorn/no-null': 'off',
'@typescript-eslint/consistent-type-definitions': ['error', 'type'],
Expand Down
1 change: 0 additions & 1 deletion .github/jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ module.exports = {
setupFilesAfterEnv: [
'@testing-library/jest-native/extend-expect',
'<rootDir>/node_modules/react-native-gesture-handler/jestSetup.js',
'<rootDir>/node_modules/@react-native-google-signin/google-signin/jest/build/setup.js',
'<rootDir>/.github/jest.setup.js',
],
setupFiles: ['<rootDir>/node_modules/jest-offline'],
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
- name: Install pods
if: steps.cocoapods-cache.outputs.cache-hit != 'true'
run: NO_FLIPPER=1 pod install --project-directory=ios
run: pod install --project-directory=ios

- name: Deploy iOS
uses: maierj/[email protected]
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/validate-code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-depth: 1

- name: Setup node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'yarn'
Expand Down
12 changes: 10 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ DerivedData
*.hmap
*.ipa
*.xcuserstate
ios/.xcode.env.local
**/.xcode.env.local

# Android/IntelliJ
#
Expand Down Expand Up @@ -56,7 +56,7 @@ yarn-error.log
*.jsbundle

# Ruby / CocoaPods
/ios/Pods/
**/Pods/
/vendor/bundle/

# Temporary files created by Metro to check the health of the file watcher
Expand All @@ -65,3 +65,11 @@ yarn-error.log
# Custom
certs/
.cache/

# Yarn
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions
7 changes: 6 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
{
"editor.codeActionsOnSave": {
"source.organizeImports": "always",
"source.fixAll": "always",
"source.addMissingImports": "always",
"source.sortImports": "always"
},
"editor.formatOnSave": true,
"typescript.validate.enable": true,
"files.insertFinalNewline": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.codeActionsOnSave": ["source.organizeImports", "source.fixAll"],
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": false,
"git.mergeEditor": false,
Expand Down
6 changes: 3 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
source 'https://rubygems.org'

ruby "3.2.2"
ruby ">= 3.3.0"
gem 'fastlane'
gem 'ffi'
gem 'fastlane-plugin-load_json'
gem 'fastlane-plugin-codepush'
gem 'fastlane-plugin-rename_android_package'
gem 'fastlane-plugin-update_android_strings'
gem 'fastlane-plugin-versioning_android'
gem 'cocoapods', '~> 1.13'
gem 'activesupport', '>= 6.1.7.3', '< 7.1.0'
gem 'cocoapods', '>= 1.13', '!= 1.15.0', '!= 1.15.1'
gem 'activesupport', '>= 6.1.7.5', '!= 7.1.0'
Loading

0 comments on commit eac0627

Please sign in to comment.