Skip to content

Commit ca22302

Browse files
authored
chore: Apply CSS release PR review suggestions (#194)
* Apply some changes suggested by @tjzel * Change path aliases * Clean up binary search implementation, clean up template types * More template type upates * More template type upates * Some progress * Rename binary search helper function, simplify forwarded ref check * Exclude << operator overload from prod builds
1 parent 15fa318 commit ca22302

File tree

553 files changed

+615
-589
lines changed

Some content is hidden

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

553 files changed

+615
-589
lines changed

apps/common-app/.eslintrc.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// TODO - merge this eslint config with config in the features/reanimated directory
12
module.exports = {
23
env: {
34
es2021: true,
@@ -182,7 +183,7 @@ module.exports = {
182183
allowSameFolder: true,
183184
allowedDepth: 1,
184185
prefix: '~',
185-
rootDir: 'src/features',
186+
rootDir: 'src/apps',
186187
},
187188
{ allowSameFolder: true, allowedDepth: 1, prefix: '@', rootDir: 'src' },
188189
],

apps/common-app/package.json

Lines changed: 1 addition & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -20,19 +20,6 @@
2020
"@react-navigation/stack": "*",
2121
"@shopify/flash-list": "*",
2222
"d3-shape": "*",
23-
"eslint": "*",
24-
"eslint-config-prettier": "*",
25-
"eslint-import-resolver-typescript": "*",
26-
"eslint-plugin-import": "*",
27-
"eslint-plugin-no-relative-import-paths": "*",
28-
"eslint-plugin-perfectionist": "*",
29-
"eslint-plugin-prettier": "*",
30-
"eslint-plugin-react-hooks": "*",
31-
"eslint-plugin-reanimated": "*",
32-
"eslint-plugin-simple-import-sort": "*",
33-
"madge": "*",
34-
"patch-package": "*",
35-
"prettier": "*",
3623
"react": "*",
3724
"react-dom": "*",
3825
"react-native": "*",
@@ -43,9 +30,7 @@
4330
"react-native-screens": "*",
4431
"react-native-svg": "*",
4532
"react-native-web": "*",
46-
"react-strict-dom": "*",
47-
"typescript": "*",
48-
"typescript-eslint": "*"
33+
"react-strict-dom": "*"
4934
},
5035
"devDependencies": {
5136
"@react-native-async-storage/async-storage": "2.1.0",
@@ -81,7 +66,6 @@
8166
"react-native-screens": "4.5.0",
8267
"react-native-svg": "15.11.1",
8368
"react-strict-dom": "0.0.27",
84-
"ts-patch": "^3.3.0",
8569
"typescript": "~5.3.0",
8670
"typescript-eslint": "^8.12.2"
8771
}

apps/common-app/src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
// TODO - implement
2-
import { default as App } from '~/css/App';
2+
import { default as App } from '@/apps/css/App';
33

44
export default App;
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.

0 commit comments

Comments
 (0)