Skip to content

Commit 27f3a69

Browse files
committed
WIP: Migration to "create-react-native-library" template and new arch - Android
1 parent 64aa755 commit 27f3a69

File tree

244 files changed

+30981
-12114
lines changed

Some content is hidden

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

244 files changed

+30981
-12114
lines changed

.editorconfig

+15
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

.flowconfig

-73
This file was deleted.

.gitattributes

+3
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

.github/FUNDING.yml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
github: birdofpreyru

.gitignore

+57-19
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,16 @@
1-
node_modules
2-
workbench
3-
*.log
4-
# Xcode
1+
# OSX
2+
#
53
.DS_Store
4+
5+
# XDE
6+
.expo/
7+
8+
# VSCode
9+
.vscode/
10+
jsconfig.json
11+
12+
# Xcode
13+
#
614
build/
715
*.pbxuser
816
!default.pbxuser
@@ -12,21 +20,51 @@ build/
1220
!default.mode2v3
1321
*.perspectivev3
1422
!default.perspectivev3
15-
*.xcworkspace
16-
!default.xcworkspace
1723
xcuserdata
18-
profile
24+
*.xccheckout
1925
*.moved-aside
2026
DerivedData
21-
.idea/
22-
# Pods - for those of you who use CocoaPods
23-
Pods
24-
update-test.sh
25-
.vscode/
26-
android/.gradle/*
27-
android/gradle/*
28-
android/*.iml
29-
android/local.properties
30-
android/.settings
31-
android/.project
32-
Session.vim
27+
*.hmap
28+
*.ipa
29+
*.xcuserstate
30+
project.xcworkspace
31+
32+
# Android/IJ
33+
#
34+
.classpath
35+
.cxx
36+
.gradle
37+
.idea
38+
.project
39+
.settings
40+
local.properties
41+
android.iml
42+
43+
# Cocoapods
44+
#
45+
example/ios/Pods
46+
47+
# Ruby
48+
example/vendor/
49+
50+
# node.js
51+
#
52+
node_modules/
53+
npm-debug.log
54+
yarn-debug.log
55+
yarn-error.log
56+
57+
# BUCK
58+
buck-out/
59+
\.buckd/
60+
android/app/libs
61+
android/keystores/debug.keystore
62+
63+
# Expo
64+
.expo/
65+
66+
# Turborepo
67+
.turbo/
68+
69+
# generated by bob
70+
lib/

.jshintrc

-79
This file was deleted.

.npmignore

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
.*
2+
android/build
3+
build
4+
dr.pogodin-react-native-fs-*.tgz
5+
/example/
6+
ios/build
7+
node_modules

.nvmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v18.17.0
File renamed without changes.

AUTHORS.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
- Dr. Sergey Pogodin <doc@pogodin.studio> (https://dr.pogodin.studio)
2+
- Johannes Lumpe <johannes@lum.pe> (https://github.com/johanneslumpe)

0 commit comments

Comments
 (0)