-
Notifications
You must be signed in to change notification settings - Fork 47.6k
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
Use Yarn Workspaces #11252
Merged
Merged
Use Yarn Workspaces #11252
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
cafd508
Enable Yarn workspaces for packages/*
gaearon fd6784c
Move src/isomorphic/* into packages/react/src/*
gaearon 24260e8
Create index.js stubs for all packages in packages/*
gaearon 60a7518
Put FB entry point for react-dom into packages/*
gaearon b3ccdbb
Move src/renderers/testing/* into packages/react-test-renderer/src/*
gaearon 1c62fd8
Remove src/node_modules
gaearon 7a31946
Add a hacky workaround for Jest/Workspaces issue
gaearon c5e1470
Add a fake react-native package
gaearon 165d574
Move src/renderers/art/* into packages/react-art/src/*
gaearon 91a90d9
Move src/renderers/noop/* into packages/react-noop-renderer/src/*
gaearon 8dcb375
Move src/renderers/dom/* into packages/react-dom/src/*
gaearon 82510db
Move src/renderers/shared/fiber/* into packages/react-reconciler/src/*
gaearon b50aa80
Move DOM/reconciler tests I previously forgot to move
gaearon 30e7d8c
Move src/renderers/native-*/* into packages/react-native-*/src/*
gaearon a9f79b3
Move shared code into packages/shared
gaearon 5c31f26
Add back files that somehow got lost
gaearon 6634d37
Fix the build
gaearon f1aefeb
Prettier
gaearon f179c2b
Add missing license headers
gaearon 2917a68
Fix an issue that caused mocks to get included into build
gaearon c07109a
Update other references to src/
gaearon 6838cc9
Re-run Prettier
gaearon af93d31
Fix lint
gaearon 5cc7de4
Fix weird Flow violation
gaearon fa32739
Update sizes
gaearon d714d38
Fix stats script
gaearon 2032660
Fix packaging fixtures
gaearon dbe6737
Fix art fixture
gaearon 48ebbf7
Fix reconciler fixture
gaearon f9d855c
Fix SSR fixture
gaearon b08673f
Rename native packages
gaearon 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
Add a fake react-native package
- Loading branch information
commit c5e1470b56489b114705d03eb7c9f93e55e807a5
There are no files selected for viewing
This file contains 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,5 @@ | ||
'use strict'; | ||
|
||
// TODO: Move the source into packages | ||
// TODO: This package is a lie. Maybe rename to react-native-renderer? | ||
module.exports = require('ReactNativeFiberEntry'); |
This file contains 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 @@ | ||
{ | ||
"name": "react-native", | ||
"version": "16.0.0", | ||
"private": true, | ||
"repository": "facebook/react", | ||
"dependencies": { | ||
"fbjs": "^0.8.16", | ||
"object-assign": "^4.1.1" | ||
} | ||
} |
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.
👍