mirror of
https://github.com/zebrajr/react.git
synced 2025-12-06 12:20:20 +01:00
* Bump version number * Remove Scheduler indirection I originally kept the React PriorityLevel and Scheduler PriorityLevel types separate in case there was a versioning mismatch between the two modules. However, it looks like we're going to keep the Scheduler module private in the short to medium term, and longer term the public interface will match postTask. So, I've removed the extra indirection (the switch statements that convert between the two types).
14 lines
531 B
JavaScript
14 lines
531 B
JavaScript
/**
|
|
* 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.
|
|
*/
|
|
|
|
// TODO: this is special because it gets imported during build.
|
|
//
|
|
// TODO: 17.0.3 has not been released to NPM;
|
|
// It exists as a placeholder so that DevTools can support work tag changes between releases.
|
|
// When we next publish a release (either 17.0.3 or 17.1.0), update the matching TODO in backend/renderer.js
|
|
export default '17.0.3';
|