-
Notifications
You must be signed in to change notification settings - Fork 47.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fork ReactSharedInternals for UMD builds (#15617)
- Loading branch information
Showing
5 changed files
with
60 additions
and
17 deletions.
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
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,44 @@ | ||
/** | ||
* Copyright (c) Facebook, Inc. and its affiliates. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
*/ | ||
|
||
import assign from 'object-assign'; | ||
import * as Scheduler from 'scheduler'; | ||
import * as SchedulerTracing from 'scheduler/tracing'; | ||
import ReactCurrentDispatcher from '../ReactCurrentDispatcher'; | ||
import ReactCurrentOwner from '../ReactCurrentOwner'; | ||
import ReactDebugCurrentFrame from '../ReactDebugCurrentFrame'; | ||
|
||
const ReactSharedInternals = { | ||
ReactCurrentDispatcher, | ||
ReactCurrentOwner, | ||
// used by act() | ||
ReactShouldWarnActingUpdates: {current: false}, | ||
// Used by renderers to avoid bundling object-assign twice in UMD bundles: | ||
assign, | ||
}; | ||
|
||
if (__DEV__) { | ||
Object.assign(ReactSharedInternals, { | ||
// These should not be included in production. | ||
ReactDebugCurrentFrame, | ||
// Shim for React DOM 16.0.0 which still destructured (but not used) this. | ||
// TODO: remove in React 17.0. | ||
ReactComponentTreeHook: {}, | ||
}); | ||
} | ||
|
||
// Re-export the schedule API(s) for UMD bundles. | ||
// This avoids introducing a dependency on a new UMD global in a minor update, | ||
// Since that would be a breaking change (e.g. for all existing CodeSandboxes). | ||
// This re-export is only required for UMD bundles; | ||
// CJS bundles use the shared NPM package. | ||
Object.assign(ReactSharedInternals, { | ||
Scheduler, | ||
SchedulerTracing, | ||
}); | ||
|
||
export default ReactSharedInternals; |
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
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
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