Skip to content

Commit

Permalink
Fix/deps (#298)
Browse files Browse the repository at this point in the history
* build(deps): bump actions/checkout from 3 to 4 (#62)
* build(deps): bump fbjs from 3.0.4 to 3.0.5 in /example (#64)
* build(deps-dev): bump babel-plugin-module-resolver from 4.1.0 to 5.0.0 in /example (#67)
* build(deps): bump react-native-safe-area-context from 4.6.4 to 4.9.0 in /example (#269)
* build(deps-dev): bump jest from 29.6.0 to 29.7.0 in /example (#80)
* build(deps-dev): bump @babel/plugin-proposal-class-properties (#113)
* build(deps-dev): bump @sinonjs/fake-timers from 11.2.1 to 11.2.2 (#139)
* build(deps): bump actions/setup-node from 3 to 4 (#145)
* build(deps): bump dessant/label-actions from 2 to 4 (#170)
* build(deps): bump react-native and @types/react-native in /example (#171)
* build(deps): bump actions/setup-java from 3 to 4 (#172)
* build(deps): bump debounce from 1.2.1 to 2.0.0 in /example (#177)
* build(deps-dev): bump @babel/preset-typescript in /example (#180)
* build(deps): bump debounce from 1.2.1 to 2.0.0 (#185)
* build(deps-dev): bump @types/mapbox__geo-viewport from 0.4.1 to 0.5.3 (#192)
* build(deps): bump @react-native-masked-view/masked-view in /example (#199)
* build(deps-dev): bump typescript from 4.9.5 to 5.3.3 in /example (#203)
* build(deps): bump react-native-vector-icons in /example (#204)
* build(deps): bump moment from 2.29.4 to 2.30.1 in /example (#210)
* build(deps-dev): bump @testing-library/react-native from 8.0.0 to 12.4.3 (#213)
* build(deps-dev): bump eslint-plugin-ft-flow from 2.0.3 to 3.0.2 (#214)
* build(deps-dev): bump typescript from 4.9.5 to 5.3.3 (#219)
* build(deps-dev): bump eslint-config-prettier from 8.10.0 to 9.1.0 (#221)
* build(deps): bump @react-navigation/stack from 6.3.18 to 6.3.25 in /example (#270)
* build(deps-dev): bump eslint-plugin-import from 2.28.1 to 2.29.1 (#223)
* build(deps): bump @types/geojson from 7946.0.11 to 7946.0.14 in /example (#243)
* build(deps-dev): bump documentation from 14.0.2 to 14.0.3 (#247)
* build(deps-dev): bump eslint-plugin-prettier from 5.0.1 to 5.1.3 (#248)
* build(deps): bump @types/geojson from 7946.0.12 to 7946.0.14 (#251)
* build(deps-dev): bump @babel/eslint-parser from 7.22.15 to 7.23.10 (#255)
* build(deps-dev): bump @expo/config-plugins from 7.6.0 to 7.8.4 (#256)
* chore: update dev dependencies (#262)
* build(deps): bump react-native-svg from 14.1.0 to 15.0.0 in /example (#271)
* build(deps-dev): bump @babel/runtime from 7.23.1 to 7.24.0 in /example (#272)
* build(deps-dev): bump @react-native/metro-config from 0.72.7 to 0.72.12 in /example (#273)
* build(deps): bump react-native-gesture-handler from 2.13.1 to 2.15.0 in /example (#274)
* build(deps-dev): bump detox from 20.17.0 to 20.18.4 in /example (#275)
* build(deps): bump @react-navigation/native from 6.1.8 to 6.1.14 in /example (#276)
* build(deps): bump react-native from 0.72.1 to 0.73.5 in /example (#277)
* build(deps-dev): bump @babel/core from 7.22.8 to 7.24.0 in /example (#278)
* build(deps-dev): bump @types/react from 18.2.14 to 18.2.61 in /example (#279)
* build(deps-dev): bump lint-staged from 14.0.1 to 15.2.2 (#283)
* build(deps-dev): bump @typescript-eslint/eslint-plugin (#284)
* Fix: debounce import (#286)
  • Loading branch information
tyrauber authored Mar 26, 2024
1 parent 9a48139 commit 7aa1988
Show file tree
Hide file tree
Showing 28 changed files with 34,181 additions and 35,915 deletions.
5 changes: 3 additions & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ module.exports = {
'plugin:react/recommended',
'plugin:jest/recommended',
'prettier',
'@react-native-community',
'@react-native',
],
rules: {
'react/no-deprecated': 'warn',
Expand Down Expand Up @@ -144,7 +144,7 @@ module.exports = {
// =================================
extends: [
'plugin:@typescript-eslint/recommended',
'@react-native-community',
'@react-native',
'eslint:recommended',
'plugin:react/recommended',
'prettier',
Expand All @@ -156,6 +156,7 @@ module.exports = {
'@typescript-eslint/explicit-function-return-type': ['error'],
'@typescript-eslint/explicit-module-boundary-types': ['error'],
'@typescript-eslint/no-unused-vars': ['error'],
'@typescript-eslint/no-explicit-any': 'off',
'no-unused-vars': 'off',
'no-use-before-define': 'off',
'@typescript-eslint/no-use-before-define': ['warn'],
Expand Down
3 changes: 3 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ updates:
- dependency-name: "react"
- dependency-name: "react-native"
- dependency-name: "jest-cli"
- dependency-name: "@types/react"
- dependency-name: "@types/react-native"
- dependency-name: "@types/jest"
# example
- package-ecosystem: "npm"
directory: "/example"
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/android-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,18 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup node ${{ inputs.NVMRC }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ inputs.NVMRC }}

- name: Setup JDK zulu 11
uses: actions/setup-java@v3
- name: Setup JDK zulu 17
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '11'
java-version: '17'

- run: yarn install --immutable --check-cache
working-directory: example
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ios-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup node ${{ inputs.NVMRC }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ inputs.NVMRC }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/label-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ jobs:
action:
runs-on: ubuntu-latest
steps:
- uses: dessant/label-actions@v2
- uses: dessant/label-actions@v4
8 changes: 4 additions & 4 deletions .github/workflows/on-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Read .nvmrc
run: echo "NVMRC=$(cat .nvmrc)" >> $GITHUB_OUTPUT
id: nvm

- name: Setup node ${{ steps.nvm.outputs.NVMRC }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ steps.nvm.outputs.NVMRC }}

Expand Down Expand Up @@ -55,10 +55,10 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup node ${{ steps.nvm.outputs.NVMRC }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ needs.lint_test_generate.outputs.NVMRC }}
registry-url: https://registry.npmjs.org/
Expand Down
50,354 changes: 23,699 additions & 26,655 deletions .pnp.cjs
100755 → 100644

Large diffs are not rendered by default.

Loading

0 comments on commit 7aa1988

Please sign in to comment.