-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* expo sdk43 * dependency upgrades * cleanup * update dependencies * updates * 16.13 * add gitattributes * lint check * adds builder bob again * update comment flow * updates * 16.13 * fix * v43.0.0 Co-authored-by: Peter Piekarczyk <[email protected]>
- Loading branch information
Showing
19 changed files
with
2,824 additions
and
4,290 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 |
---|---|---|
@@ -1,3 +1,11 @@ | ||
*.pbxproj -text | ||
# specific for windows script files | ||
*.bat text eol=crlf | ||
*.bat text eol=crlf | ||
*.pbxproj binary linguist-generated | ||
ios/Exponent.xcodeproj/project.pbxproj merge=union -text diff linguist-generated | ||
apps/bare-expo/ios/BareExpo.xcodeproj/project.pbxproj merge=union -text diff linguist-generated | ||
apps/bare-sandbox/ios/bare-sandbox.xcodeproj/project.pbxproj merge=union -text diff linguist-generated | ||
templates/expo-template-bare-minimum/ios/HelloWorld.xcodeproj/project.pbxproj merge=union -text diff linguist-generated | ||
packages/*/build/** -diff linguist-generated | ||
packages/*/plugin/build/** -diff linguist-generated | ||
packages/@*/*/build/** -diff linguist-generated |
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 +1 @@ | ||
14 | ||
16.13 |
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,3 @@ | ||
# Windows files | ||
[*.bat] | ||
end_of_line = crlf |
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,3 @@ | ||
# Windows files should use crlf line endings | ||
# https://help.github.com/articles/dealing-with-line-endings/ | ||
*.bat text eol=crlf |
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 @@ | ||
module.exports = function (api) { | ||
api.cache(true); | ||
|
||
return { | ||
presets: ["babel-preset-expo"], | ||
}; | ||
|
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
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,14 +1,6 @@ | ||
{ | ||
"extends": "expo/tsconfig.base", | ||
"compilerOptions": { | ||
"jsx": "react-native", | ||
"target": "esnext", | ||
"lib": ["esnext"], | ||
"allowJs": true, | ||
"skipLibCheck": true, | ||
"allowSyntheticDefaultImports": true, | ||
"resolveJsonModule": true, | ||
"esModuleInterop": true, | ||
"moduleResolution": "node" | ||
}, | ||
"extends": "expo/tsconfig.base" | ||
"strict": true | ||
} | ||
} |
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,5 +1,5 @@ | ||
{ | ||
"version": "42.5.2", | ||
"version": "43.0.0", | ||
"npmClient": "yarn", | ||
"useWorkspaces": true, | ||
"packages": [ | ||
|
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,15 +1,16 @@ | ||
{ | ||
"name": "react-native-jigsaw", | ||
"description": "Root package.json for workspaces", | ||
"version": "0.0.0", | ||
"private": true, | ||
"description": "Root package.json for workspaces", | ||
"license": "MIT", | ||
"author": "Draftbit <[email protected]> (https://draftbit.com)", | ||
"publishConfig": { | ||
"access": "public", | ||
"registry": "https://registry.npmjs.org/" | ||
}, | ||
"scripts": { | ||
"postinstall": "expo-yarn-workspaces check-workspace-dependencies", | ||
"postinstall": "yarn-deduplicate && expo-yarn-workspaces check-workspace-dependencies", | ||
"example": "yarn --cwd example", | ||
"bootstrap": "lerna bootstrap", | ||
"crosslink": "lerna link", | ||
|
@@ -27,7 +28,8 @@ | |
"version:major": "lerna version minor --no-push", | ||
"version:minor": "lerna version patch --no-push", | ||
"version:patch": "echo \"No patch versions: See root README.md\"", | ||
"prepare": "husky install" | ||
"prepare": "husky install", | ||
"tsc": "echo 'You are trying to run \"tsc\" in the workspace root. Run it from an individual package instead.' && exit 1" | ||
}, | ||
"workspaces": [ | ||
"example", | ||
|
@@ -40,19 +42,21 @@ | |
"dotenv": "^9.0.2", | ||
"eslint": "^7.26.0", | ||
"eslint-plugin-prettier": "^3.4.0", | ||
"expo-yarn-workspaces": "^1.5.2", | ||
"expo-yarn-workspaces": "*", | ||
"husky": ">=6", | ||
"jest": "^26.6.3", | ||
"json-server": "^0.16.3", | ||
"lerna": "^4.0.0", | ||
"lint-staged": ">=10", | ||
"node-fetch": "^2.6.1", | ||
"prettier": "^2.3.0", | ||
"react-native-builder-bob": "^0.18.2", | ||
"rimraf": "^3.0.2", | ||
"snack-sdk": "^3.4.1", | ||
"ts-node": "^10.0.0", | ||
"typescript": "^4.2.4", | ||
"utility-types": "^3.10.0" | ||
"typescript": "~4.3.5", | ||
"utility-types": "^3.10.0", | ||
"yarn-deduplicate": "^3.1.0" | ||
}, | ||
"eslintConfig": { | ||
"extends": [ | ||
|
@@ -105,7 +109,6 @@ | |
"*.{js,ts,tsx,json,mcss,md}": "prettier --write" | ||
}, | ||
"engines": { | ||
"node": "^14" | ||
}, | ||
"version": "0.0.0" | ||
"node": "16.13" | ||
} | ||
} |
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
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
Oops, something went wrong.