Skip to content
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 31 commits into from
Oct 18, 2017
Merged
Show file tree
Hide file tree
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 Oct 17, 2017
fd6784c
Move src/isomorphic/* into packages/react/src/*
gaearon Oct 17, 2017
24260e8
Create index.js stubs for all packages in packages/*
gaearon Oct 17, 2017
60a7518
Put FB entry point for react-dom into packages/*
gaearon Oct 17, 2017
b3ccdbb
Move src/renderers/testing/* into packages/react-test-renderer/src/*
gaearon Oct 17, 2017
1c62fd8
Remove src/node_modules
gaearon Oct 17, 2017
7a31946
Add a hacky workaround for Jest/Workspaces issue
gaearon Oct 17, 2017
c5e1470
Add a fake react-native package
gaearon Oct 17, 2017
165d574
Move src/renderers/art/* into packages/react-art/src/*
gaearon Oct 17, 2017
91a90d9
Move src/renderers/noop/* into packages/react-noop-renderer/src/*
gaearon Oct 17, 2017
8dcb375
Move src/renderers/dom/* into packages/react-dom/src/*
gaearon Oct 17, 2017
82510db
Move src/renderers/shared/fiber/* into packages/react-reconciler/src/*
gaearon Oct 17, 2017
b50aa80
Move DOM/reconciler tests I previously forgot to move
gaearon Oct 17, 2017
30e7d8c
Move src/renderers/native-*/* into packages/react-native-*/src/*
gaearon Oct 17, 2017
a9f79b3
Move shared code into packages/shared
gaearon Oct 17, 2017
5c31f26
Add back files that somehow got lost
gaearon Oct 17, 2017
6634d37
Fix the build
gaearon Oct 17, 2017
f1aefeb
Prettier
gaearon Oct 17, 2017
f179c2b
Add missing license headers
gaearon Oct 17, 2017
2917a68
Fix an issue that caused mocks to get included into build
gaearon Oct 17, 2017
c07109a
Update other references to src/
gaearon Oct 17, 2017
6838cc9
Re-run Prettier
gaearon Oct 17, 2017
af93d31
Fix lint
gaearon Oct 17, 2017
5cc7de4
Fix weird Flow violation
gaearon Oct 17, 2017
fa32739
Update sizes
gaearon Oct 17, 2017
d714d38
Fix stats script
gaearon Oct 17, 2017
2032660
Fix packaging fixtures
gaearon Oct 17, 2017
dbe6737
Fix art fixture
gaearon Oct 17, 2017
48ebbf7
Fix reconciler fixture
gaearon Oct 17, 2017
f9d855c
Fix SSR fixture
gaearon Oct 17, 2017
b08673f
Rename native packages
gaearon Oct 18, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Move src/renderers/shared/fiber/* into packages/react-reconciler/src/*
  • Loading branch information
gaearon committed Oct 18, 2017
commit 82510dbb7da1872cf1b1de35de43f028c47410e5
3 changes: 1 addition & 2 deletions packages/react-reconciler/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
'use strict';

// TODO: Move the source into packages
module.exports = require('ReactFiberReconciler');
module.exports = require('./src/ReactFiberReconciler');