Skip to content

Commit e08c891

Browse files
authored
Merge branch 'main' into patch-1
2 parents 40b93c7 + 6aa24b6 commit e08c891

File tree

546 files changed

+40575
-15493
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

546 files changed

+40575
-15493
lines changed

.github/actions/setup/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ runs:
88
uses: actions/setup-node@v3
99
with:
1010
node-version-file: .nvmrc
11-
cache: 'npm'
1211

1312
- name: Cache dependencies
1413
id: yarn-cache
@@ -17,8 +16,9 @@ runs:
1716
path: |
1817
**/node_modules
1918
.yarn/install-state.gz
20-
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
19+
key: ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}-${{ hashFiles('**/package.json', '!node_modules/**') }}
2120
restore-keys: |
21+
${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}
2222
${{ runner.os }}-yarn-
2323
2424
- name: Install dependencies

.github/workflows/autofix.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,8 @@ jobs:
2424
- name: Fix lint issues
2525
run: yarn markdownlint-cli2-fix
2626

27+
- name: Prettify code
28+
run: yarn prettier --write .
29+
2730
- name: Autofix
2831
uses: autofix-ci/action@8106fde54b877517c9af2c3d68918ddeaa7bed64

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,11 @@ translated_docs/
88

99
i18n/*
1010
!i18n/en.json
11+
12+
# Yarn
13+
.yarn/*
14+
!.yarn/patches
15+
!.yarn/plugins
16+
!.yarn/releases
17+
!.yarn/sdks
18+
!.yarn/versions

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
16.19.1
1+
lts/*

.prettierignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
build
2+
.yarn

.prettierrc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
"tabWidth": 2,
44
"trailingComma": "es5",
55
"useTabs": false
6-
}
6+
}

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"editor.codeActionsOnSave": ["source.organizeImports", "source.fixAll"]
3+
}

.yarn/releases/yarn-4.0.2.cjs

Lines changed: 893 additions & 0 deletions
Large diffs are not rendered by default.

.yarnrc.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
nodeLinker: node-modules
2+
3+
yarnPath: .yarn/releases/yarn-4.0.2.cjs

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<h1 align="center"><a href="https://reactnavigation.org/"> <img src="static/img/react_navigation_header.png" width="400" /> </a></h1>
1+
<h1 align="center"><a href="https://reactnavigation.org/"> <img src="static/img/react_navigation_header.png" width="400" alt="React Navigation Logo" /> </a></h1>
22

33
Want to help improve the documentation? That would be so very much appreciated. Some information on that below.
44

0 commit comments

Comments
 (0)