-
-
Notifications
You must be signed in to change notification settings - Fork 443
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: support react native 0.77 (#766)
* feat: support react native 0.77 * Create neat-games-lie.md * chore: yarn immutable
- Loading branch information
Showing
17 changed files
with
1,482 additions
and
4,010 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@react-native-documents/picker": minor | ||
--- | ||
|
||
feat: support react native 0.77 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,7 +31,7 @@ jobs: | |
cache: yarn | ||
- name: Install dependencies and build website | ||
run: | | ||
yarn install | ||
yarn install --immutable | ||
yarn build | ||
deploy: | ||
if: github.event_name != 'pull_request' | ||
|
@@ -53,5 +53,5 @@ jobs: | |
run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "Vojtech Novak" | ||
yarn install | ||
yarn install --immutable | ||
yarn deploy |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
556 changes: 278 additions & 278 deletions
556
.yarn/releases/yarn-4.5.1.cjs → .yarn/releases/yarn-4.6.0.cjs
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
nodeLinker: node-modules | ||
|
||
yarnPath: .yarn/releases/yarn-4.5.1.cjs | ||
yarnPath: .yarn/releases/yarn-4.6.0.cjs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
{ | ||
"name": "react-native-documents", | ||
"private": false, | ||
"description": "A react native interface to access documents from dropbox, google drive, iCloud...", | ||
"scripts": { | ||
"build": "yarn workspaces foreach -A -p run prepare", | ||
|
@@ -44,24 +43,22 @@ | |
"@commitlint/config-conventional" | ||
] | ||
}, | ||
"packageManager": "[email protected]", | ||
"dependencies": { | ||
"@changesets/cli": "^2.27.11", | ||
"@changesets/cli": "^2.27.12", | ||
"@commitlint/cli": "^18.6.1", | ||
"@commitlint/config-conventional": "^18.6.3", | ||
"@evilmartians/lefthook": "^1.7.15", | ||
"@evilmartians/lefthook": "^1.10.10", | ||
"@jest/globals": "^29.7.0", | ||
"@manypkg/cli": "^0.21.4", | ||
"@react-native/eslint-config": "^0.74.83", | ||
"@semantic-release/git": "^10.0.1", | ||
"@types/jest": "^29.5.13", | ||
"eslint": "^8.57.0", | ||
"@react-native/eslint-config": "^0.77.0", | ||
"@types/jest": "^29.5.14", | ||
"eslint": "^8.57.1", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-plugin-prettier": "^5.1.3", | ||
"eslint-plugin-prettier": "^5.2.3", | ||
"jest": "^29.7.0", | ||
"pod-install": "^0.2.2", | ||
"prettier": "^3.2.5", | ||
"semantic-release": "^22.0.12", | ||
"typescript": "^5.6.2" | ||
} | ||
"pod-install": "^0.3.4", | ||
"prettier": "^3.4.2", | ||
"typescript": "^5.7.3" | ||
}, | ||
"packageManager": "[email protected]" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,8 +26,7 @@ | |
], | ||
"scripts": { | ||
"build:mock": "tsc --build jest", | ||
"prepare": "bob build && yarn build:mock", | ||
"release": "yarn prepare && npx semantic-release" | ||
"prepare": "bob build && yarn build:mock" | ||
}, | ||
"codegenConfig": { | ||
"name": "rndocumentpickerCGen", | ||
|
@@ -61,8 +60,8 @@ | |
}, | ||
"devDependencies": { | ||
"@tsconfig/node18": "^18.2.4", | ||
"react-native-builder-bob": "^0.30.2", | ||
"typescript": "^5.6.2" | ||
"react-native-builder-bob": "^0.36.0", | ||
"typescript": "^5.7.3" | ||
}, | ||
"peerDependencies": { | ||
"react": "*", | ||
|
@@ -87,6 +86,5 @@ | |
} | ||
] | ||
] | ||
}, | ||
"packageManager": "[email protected]" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,8 +26,7 @@ | |
], | ||
"scripts": { | ||
"build:mock": "tsc --build jest", | ||
"prepare": "bob build && yarn build:mock", | ||
"release": "yarn prepare && npx semantic-release" | ||
"prepare": "bob build && yarn build:mock" | ||
}, | ||
"codegenConfig": { | ||
"name": "rndocumentviewerCGen", | ||
|
@@ -59,8 +58,8 @@ | |
}, | ||
"devDependencies": { | ||
"@tsconfig/node18": "^18.2.4", | ||
"react-native-builder-bob": "^0.30.2", | ||
"typescript": "^5.6.2" | ||
"react-native-builder-bob": "^0.36.0", | ||
"typescript": "^5.7.3" | ||
}, | ||
"peerDependencies": { | ||
"react": "*", | ||
|
@@ -85,6 +84,5 @@ | |
} | ||
] | ||
] | ||
}, | ||
"packageManager": "[email protected]" | ||
} | ||
} |
Oops, something went wrong.