-
Notifications
You must be signed in to change notification settings - Fork 212
feat: add fabric option #273
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
41 commits
Select commit
Hold shift + click to select a range
8e8e114
feat: initial fabric cli
MateWW d5aec16
feat: fabric root directory
MateWW dbde595
feat: fabric src dir
MateWW 677b08b
feat: fabric ios dir
MateWW 9f1febf
feat: generate example app via `react-native init`
atlj a06282b
chore(example template): remove android files
atlj 3d2482f
chore(example template): remove unused root files
atlj 98f8e40
chore(example template): remove ios files
atlj 795d980
chore(example template): remove android buildscripts
atlj 93223d1
refactor: move rn example app generator to utils
atlj d7fa53f
feat: tbc
MateWW 25bb21b
chore(example template): rename index.tsx to index.ts
atlj 8bd1521
feat: enable new architecture on turbo module libraries
atlj 1e3c167
feat: rename to new_arch
e1aacb6
refactor: rename app exampleAppGenerators to generateRNApp
atlj 910769d
refactor: don't specify RN version for example apps
atlj 8d3e444
refactor(example generator): extract files to delete to constant
atlj 3e1548b
refactor(rn example generator): extract packages to add and remove
atlj 2f01afb
fix: native example code is generated on expo projects
atlj a112c16
fix: example
a0390ea
fix: MainComponentsRegistry headers
f7fb47d
refactor(example generator): change isTurbomodule flag as isNewArch
atlj 950881a
docs(example generator): remove version param from init command
atlj e5a5e8f
chore: revert naming
0a27b16
feat: implement fabric native view
6fd32f3
feat: set root package's react and react native versions from example…
atlj 813862f
fix: lint
9e3a313
chore: add a patch for react-native 0.70.0 for codegen on ios
atlj 72097b4
fix(example template): tests cant import `App.tsx`
atlj 5a23737
fix(example generator): react-test-renderer and react-native types ar…
atlj bac2efa
chore: unify filenames
881aaf4
Merge branch '@atlj/integrate-react-native-init' into MateWW/fabric-t…
6d19ea5
fix: java view mixed path
bc926bc
fix: App.tsx template
dbfaf38
chore: bump react native version
bdb6dce
fix: App.tsx new arch
8ac7b5d
chore: bump @types/react-native to 0.70.0
fc40661
Merge branch 'main' into MateWW/fabric-template
a066c22
remove patch-package
1daacea
add fix flag
59d628c
- Remove commands
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
10 changes: 10 additions & 0 deletions
10
packages/create-react-native-library/templates/example-legacy/example/react-native.config.js
This file contains hidden or 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,10 @@ | ||
const path = require('path'); | ||
const pak = require('../package.json'); | ||
|
||
module.exports = { | ||
dependencies: { | ||
[pak.name]: { | ||
root: path.join(__dirname, '..'), | ||
}, | ||
}, | ||
}; |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Avoid adding new lines here