mirror of
https://github.com/facebook/react.git
synced 2026-02-24 20:53:03 +00:00
* Fixed invalid DevTools work tags Work tags changed recently (PR #13902) but we didn't bump React versions. This meant that DevTools has valid work tags only for master (and FB www sync) but invalid work tags for the latest open source releases. To fix this, I incremneted React's version in Git (without an actual release) and added a new fork to the work tags detection branch. This commit also adds tags for the experimental Scope and Fundamental APIs to DevTools so component names will at least display correctly. Technically these new APIs were first introduced to experimental builds ~16.9 but I didn't add a new branch to the work tags fork because I don't they're used commonly. I've just added them to the 17+ branches. * Removed FundamentalComponent from DevTools tag defs
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.2 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.2 or 17.1.0), update the matching TODO in backend/renderer.js
|
|
export default '17.0.2';
|