Skip to content

Commit a28871e

Browse files
committed
feat: init fabric view + full new architecture support
1 parent 68f41a8 commit a28871e

File tree

131 files changed

+16150
-39470
lines changed

Some content is hidden

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

131 files changed

+16150
-39470
lines changed

.editorconfig

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# EditorConfig helps developers define and maintain consistent
2+
# coding styles between different editors and IDEs
3+
# editorconfig.org
4+
5+
root = true
6+
7+
[*]
8+
9+
indent_style = space
10+
indent_size = 2
11+
12+
end_of_line = lf
13+
charset = utf-8
14+
trim_trailing_whitespace = true
15+
insert_final_newline = true

.eslintignore

Lines changed: 0 additions & 3 deletions
This file was deleted.

.eslintrc.js

Lines changed: 0 additions & 19 deletions
This file was deleted.

.gitattributes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
*.pbxproj -text
2+
# specific for windows script files
3+
*.bat text eol=crlf

.gitignore

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ DerivedData
2727
*.hmap
2828
*.ipa
2929
*.xcuserstate
30-
example/ios/.xcode.env.local
3130
project.xcworkspace
3231

3332
# Android/IJ
@@ -54,27 +53,30 @@ node_modules/
5453
npm-debug.log
5554
yarn-debug.log
5655
yarn-error.log
57-
coverage/
5856

5957
# BUCK
6058
buck-out/
6159
\.buckd/
6260
android/app/libs
6361
android/keystores/debug.keystore
6462

63+
# Yarn
64+
.yarn/*
65+
!.yarn/patches
66+
!.yarn/plugins
67+
!.yarn/releases
68+
!.yarn/sdks
69+
!.yarn/versions
70+
71+
# Expo
72+
.expo/
73+
6574
# Turborepo
6675
.turbo/
6776

6877
# generated by bob
6978
lib/
7079

71-
# fastlane
72-
#
73-
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
74-
# screenshots whenever they are needed.
75-
# For more information about the recommended setup visit:
76-
# https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md
77-
78-
fastlane/report.xml
79-
fastlane/Preview.html
80-
fastlane/screenshots
80+
# React Native Codegen
81+
ios/generated
82+
android/generated

.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v18

.prettierrc.js

Lines changed: 0 additions & 7 deletions
This file was deleted.

.watchmanconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}

.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs

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

.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs

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

0 commit comments

Comments
 (0)