Skip to content

Commit

Permalink
only paper example for now
Browse files Browse the repository at this point in the history
  • Loading branch information
tjzel committed May 10, 2024
1 parent b041080 commit 4a33b72
Show file tree
Hide file tree
Showing 523 changed files with 23,813 additions and 143 deletions.
10 changes: 7 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
{
"name": "react-native-reanimated-monorepo",
"packageManager": "yarn@4.1.1",
"workspaces": [
"packages/*"
],
"workspaces": {
"packages": [
"packages/react-native-reanimated",
"packages/reanimated-app",
"packages/reanimated-paper-example"
]
},
"private": true,
"devDependencies": {
"husky": "^9.0.11",
Expand Down
3 changes: 0 additions & 3 deletions packages/Example/App.tsx

This file was deleted.

4 changes: 0 additions & 4 deletions packages/Example/android/settings.gradle

This file was deleted.

42 changes: 0 additions & 42 deletions packages/Example/metro.config.js

This file was deleted.

7 changes: 0 additions & 7 deletions packages/Example/react-native.config.js

This file was deleted.

4 changes: 0 additions & 4 deletions packages/react-native-reanimated/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,6 @@ def resolveReactNativeDirectory() {
return file(reactNativeLocation)
}

if (isReanimatedExampleApp()) {
return file("$projectDir/../${getPlaygroundAppName()}/node_modules/react-native")
}

// monorepo workaround
// react-native can be hoisted or in project's own node_modules
def reactNativeFromProjectNodeModules = file("${rootProject.projectDir}/../node_modules/react-native")
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
41 changes: 41 additions & 0 deletions packages/react-native-reanimated/app/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{
"private": true,
"scripts": {
"build": "yarn patch-package",
"lint": "eslint --max-warnings=0 ."
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@fortawesome/react-native-fontawesome": "^0.3.0",
"@react-native-async-storage/async-storage": "^1.22.3",
"@react-native-community/slider": "^4.5.0",
"@react-native-masked-view/masked-view": "^0.3.1",
"@react-native-picker/picker": "^2.5.1",
"@react-navigation/native": "^6.1.9",
"@react-navigation/native-stack": "^6.9.17",
"@react-navigation/stack": "^6.3.18",
"d3-shape": "^3.2.0",
"react-dom": "18.0.0",
"react-native-gesture-handler": "^2.16.0",
"react-native-pager-view": "^6.2.3",
"react-native-reanimated": "link:../",
"react-native-safe-area-context": "4.10.0-rc.1",
"react-native-screens": "3.31.0-rc.1",
"react-native-svg": "^15.2.0-rc.0",
"react-native-web": "~0.18.12"
},
"devDependencies": {
"@tsconfig/react-native": "^3.0.0",
"@types/d3-shape": "^3.1.1",
"eslint": "^8.0.0-0",
"eslint-plugin-reanimated": "link:../eslintPlugin",
"patch-package": "^7.0.0",
"prettier": "^2.8.7",
"typescript": "^5.0.2"
}
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
11 changes: 11 additions & 0 deletions packages/react-native-reanimated/app/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"extends": "../tsconfig.json",
"compilerOptions": {
"baseUrl": ".",
"paths": {
"react-native-reanimated": ["../"],
"react": ["./node_modules/@types/react"]
}
},
"exclude": []
}

0 comments on commit 4a33b72

Please sign in to comment.