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

Testing builds for React/ReactDOM #17915

Merged
merged 1 commit into from
Feb 3, 2020

Conversation

threepointone
Copy link
Contributor

@threepointone threepointone commented Jan 27, 2020

This PR introduces adds react/testing and react-dom/testing.

  • changes infra to generate these builds
  • exports on ReactDOM.act in these testing builds
  • uses the new test builds in fixtures/dom

In the next PR -

  • I'll use the new builds for all our own tests
  • I'll replace usages of TestUtils.act with ReactDOM.act.

@facebook-github-bot facebook-github-bot added CLA Signed React Core Team Opened by a member of the React Core Team labels Jan 27, 2020
@codesandbox-ci
Copy link

codesandbox-ci bot commented Jan 27, 2020

This pull request is automatically built and testable in CodeSandbox.

To see build info of the built libraries, click here or the icon next to each commit SHA.

Latest deployment of this branch, based on commit f39e003:

Sandbox Source
black-sound-44bro Configuration

@sizebot
Copy link

sizebot commented Jan 27, 2020

Warnings
⚠️ Could not find build artifacts for base commit: ace9e81

Size changes (experimental)

Generated by 🚫 dangerJS against f39e003

@sizebot
Copy link

sizebot commented Jan 27, 2020

Warnings
⚠️ Could not find build artifacts for base commit: ace9e81

Size changes (stable)

Generated by 🚫 dangerJS against f39e003

@threepointone
Copy link
Contributor Author

Going to figure out where the extra bytes came from and fix it, and then clean this up and open for review.

@threepointone threepointone force-pushed the testing-build branch 2 times, most recently from 7bfca14 to 8058e9b Compare January 28, 2020 13:23
'Please file an issue at https://github.com/facebook/react/issues ' +
'if you encounter this warning.',
);
let enqueueTaskImpl = null;
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this had to be rewritten to prevent some unneeded code from leaking into the prod build
image

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nit: Use the feature flag instead?

function enqueueTask(task: () => void) {
  if (isTestingEnvironment) {
    // ...
  }
}

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ooh, that could work.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

actually, I'll wait on this for the next PR, else I'll have to include changing all our tests to using the test build in this PR.

@threepointone threepointone force-pushed the testing-build branch 3 times, most recently from 2615a82 to c9e0745 Compare January 28, 2020 14:32
@threepointone threepointone marked this pull request as ready for review January 28, 2020 14:44
@acdlite
Copy link
Collaborator

acdlite commented Jan 29, 2020

I think we should generally prefer feature flags to new build configurations. E.g. instead of a new build type called __TEST__, we could have a feature flag called enableTestingAPIs. Then turn it on in React Noop and React Test Renderer.

Then you wouldn't have to add all those special cases to change the filename. Just add a new entry to bundles.js, and a feature flags fork to match:

  /******* React DOM Testing *******/
  {
    bundleTypes: [
      NODE_DEV,
      FB_WWW_DEV,
    ],
    moduleType: RENDERER,
    entry: 'react-dom/testing',
    global: 'ReactDOM',
    externals: ['react'],
  },

React Noop and React Test Renderer wouldn't even need a new entry because we can turn on enableTestingAPIs in their feature flags without forking.

@threepointone threepointone force-pushed the testing-build branch 3 times, most recently from dcfd7c0 to ce33146 Compare February 3, 2020 16:10
scripts/rollup/bundles.js Outdated Show resolved Hide resolved
Copy link
Collaborator

@acdlite acdlite left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Approved with nits. Thanks!

@acdlite
Copy link
Collaborator

acdlite commented Feb 3, 2020

Bumping this just in case you didn't see it: #17915 (comment)

@threepointone
Copy link
Contributor Author

oof, glad I caught this - the fb builds are getting overwritten by the testing builds. working on a fix.

@threepointone threepointone force-pushed the testing-build branch 2 times, most recently from 588360a to 0ed7da1 Compare February 3, 2020 22:33
This PR introduces adds `react/testing` and `react-dom/testing`.
- changes infra to generate these builds
- exports act on ReactDOM in these testing builds
- uses the new test builds in fixtures/dom

In the next PR -

- I'll use the new builds for all our own tests
- I'll replace usages of TestUtils.act with ReactDOM.act.
@threepointone
Copy link
Contributor Author

sizebot's being weird, so I locally made a build on master, then this branch, that resulted in this. LGTM, landing.

┌────────────────────────────────────────────────────────────────────────┬───────────┬──────────────┬────────┬───────────┬──────────────┬────────┐
│ Bundle                                                                 │ Prev Size │ Current Size │ Diff   │ Prev Gzip │ Current Gzip │ Diff   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react.development.js  (UMD_DEV)                                        │ 114.27 KB │ 114.27 KB    │ 0.0%   │ 29.24 KB  │ 29.24 KB     │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react.production.min.js  (UMD_PROD)                                    │ 12.63 KB  │ 12.63 KB     │ 0.0%   │ 4.92 KB   │ 4.92 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react.profiling.min.js  (UMD_PROFILING)                                │ 16.15 KB  │ 16.15 KB     │ 0.0%   │ 6.03 KB   │ 6.03 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react.development.js  (NODE_DEV)                                       │ 73.79 KB  │ 73.79 KB     │ 0.0%   │ 19.58 KB  │ 19.58 KB     │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react.production.min.js  (NODE_PROD)                                   │ 6.92 KB   │ 6.92 KB      │ 0.0%   │ 2.84 KB   │ 2.84 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ React-dev.js  (FB_WWW_DEV)                                             │ 73.7 KB   │ 73.7 KB      │ 0.0%   │ 18.74 KB  │ 18.74 KB     │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ React-prod.js  (FB_WWW_PROD)                                           │ 17.89 KB  │ 17.89 KB     │ 0.0%   │ 4.66 KB   │ 4.66 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ React-profiling.js  (FB_WWW_PROFILING)                                 │ 17.89 KB  │ 17.89 KB     │ 0.0%   │ 4.66 KB   │ 4.66 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-dom.development.js  (UMD_DEV)                                    │ 963.77 KB │ 969.46 KB    │ +0.6%  │ 216.35 KB │ 217.91 KB    │ +0.7%  │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-dom.production.min.js  (UMD_PROD)                                │ 119.89 KB │ 119.89 KB    │ 0.0%   │ 38.38 KB  │ 38.38 KB     │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-dom.profiling.min.js  (UMD_PROFILING)                            │ 123.62 KB │ 123.62 KB    │ 0.0%   │ 39.55 KB  │ 39.55 KB     │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-dom.development.js  (NODE_DEV)                                   │ 957.83 KB │ 963.54 KB    │ +0.6%  │ 214.67 KB │ 216.24 KB    │ +0.7%  │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-dom.production.min.js  (NODE_PROD)                               │ 119.98 KB │ 119.98 KB    │ 0.0%   │ 37.62 KB  │ 37.62 KB     │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-dom.profiling.min.js  (NODE_PROFILING)                           │ 123.85 KB │ 123.85 KB    │ 0.0%   │ 38.78 KB  │ 38.78 KB     │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ ReactDOM-dev.js  (FB_WWW_DEV)                                          │ 985.28 KB │ 991.43 KB    │ +0.6%  │ 217.41 KB │ 219.07 KB    │ +0.8%  │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ ReactDOM-prod.js  (FB_WWW_PROD)                                        │ 394.46 KB │ 394.46 KB    │ 0.0%   │ 72.09 KB  │ 72.09 KB     │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ ReactDOM-profiling.js  (FB_WWW_PROFILING)                              │ 405.81 KB │ 405.81 KB    │ 0.0%   │ 74.29 KB  │ 74.29 KB     │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-dom-test-utils.development.js  (UMD_DEV)                         │ 55.15 KB  │ 55.33 KB     │ +0.3%  │ 15.53 KB  │ 15.57 KB     │ +0.2%  │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-dom-test-utils.production.min.js  (UMD_PROD)                     │ 11.16 KB  │ 11.19 KB     │ +0.3%  │ 4.13 KB   │ 4.15 KB      │ +0.4%  │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-dom-test-utils.development.js  (NODE_DEV)                        │ 53.42 KB  │ 53.6 KB      │ +0.3%  │ 15.22 KB  │ 15.25 KB     │ +0.2%  │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-dom-test-utils.production.min.js  (NODE_PROD)                    │ 10.93 KB  │ 10.97 KB     │ +0.3%  │ 4.07 KB   │ 4.08 KB      │ +0.2%  │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ ReactTestUtils-dev.js  (FB_WWW_DEV)                                    │ 52.38 KB  │ 52.58 KB     │ +0.4%  │ 14.29 KB  │ 14.32 KB     │ +0.2%  │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-dom-testing.development.js  (UMD_DEV)                            │ 0 B       │ 966.92 KB    │ n/a    │ 0 B       │ 216.94 KB    │ n/a    │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-dom-testing.production.min.js  (UMD_PROD)                        │ 0 B       │ 117.55 KB    │ n/a    │ 0 B       │ 37.86 KB     │ n/a    │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-dom-testing.profiling.min.js  (UMD_PROFILING)                    │ 0 B       │ 121.16 KB    │ n/a    │ 0 B       │ 39.02 KB     │ n/a    │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-dom-testing.development.js  (NODE_DEV)                           │ 0 B       │ 961 KB       │ n/a    │ 0 B       │ 215.26 KB    │ n/a    │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-dom-testing.production.min.js  (NODE_PROD)                       │ 0 B       │ 117.64 KB    │ n/a    │ 0 B       │ 37.22 KB     │ n/a    │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-dom-testing.profiling.min.js  (NODE_PROFILING)                   │ 0 B       │ 121.41 KB    │ n/a    │ 0 B       │ 38.32 KB     │ n/a    │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ ReactDOMTesting-dev.js  (FB_WWW_DEV)                                   │ 0 B       │ 990 KB       │ n/a    │ 0 B       │ 218.34 KB    │ n/a    │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ ReactDOMTesting-prod.js  (FB_WWW_PROD)                                 │ 0 B       │ 340.95 KB    │ n/a    │ 0 B       │ 62.21 KB     │ n/a    │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ ReactDOMTesting-profiling.js  (FB_WWW_PROFILING)                       │ 0 B       │ 351.84 KB    │ n/a    │ 0 B       │ 64.17 KB     │ n/a    │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-dom-unstable-native-dependencies.development.js  (UMD_DEV)       │ 60.89 KB  │ 60.89 KB     │ 0.0%   │ 16.05 KB  │ 16.05 KB     │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-dom-unstable-native-dependencies.production.min.js  (UMD_PROD)   │ 10.21 KB  │ 10.21 KB     │ 0.0%   │ 3.45 KB   │ 3.45 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-dom-unstable-native-dependencies.development.js  (NODE_DEV)      │ 60.59 KB  │ 60.59 KB     │ 0.0%   │ 15.97 KB  │ 15.97 KB     │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-dom-unstable-native-dependencies.production.min.js  (NODE_PROD)  │ 9.95 KB   │ 9.95 KB      │ 0.0%   │ 3.35 KB   │ 3.35 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ ReactDOMUnstableNativeDependencies-dev.js  (FB_WWW_DEV)                │ 59.41 KB  │ 59.41 KB     │ 0.0%   │ 15.2 KB   │ 15.2 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ ReactDOMUnstableNativeDependencies-prod.js  (FB_WWW_PROD)              │ 25.14 KB  │ 25.14 KB     │ 0.0%   │ 5.01 KB   │ 5.01 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-dom-server.browser.development.js  (UMD_DEV)                     │ 139.24 KB │ 139.24 KB    │ 0.0%   │ 36.91 KB  │ 36.91 KB     │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-dom-server.browser.production.min.js  (UMD_PROD)                 │ 20.43 KB  │ 20.43 KB     │ 0.0%   │ 7.48 KB   │ 7.48 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-dom-server.browser.development.js  (NODE_DEV)                    │ 135.17 KB │ 135.17 KB    │ 0.0%   │ 35.89 KB  │ 35.89 KB     │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-dom-server.browser.production.min.js  (NODE_PROD)                │ 20.35 KB  │ 20.35 KB     │ 0.0%   │ 7.45 KB   │ 7.45 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ ReactDOMServer-dev.js  (FB_WWW_DEV)                                    │ 140.31 KB │ 140.31 KB    │ 0.0%   │ 35.51 KB  │ 35.51 KB     │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ ReactDOMServer-prod.js  (FB_WWW_PROD)                                  │ 48.98 KB  │ 48.98 KB     │ 0.0%   │ 11.17 KB  │ 11.17 KB     │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-dom-server.node.development.js  (NODE_DEV)                       │ 136.28 KB │ 136.28 KB    │ 0.0%   │ 36.12 KB  │ 36.12 KB     │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-dom-server.node.production.min.js  (NODE_PROD)                   │ 20.76 KB  │ 20.76 KB     │ 0.0%   │ 7.61 KB   │ 7.61 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-dom-unstable-fizz.browser.development.js  (UMD_DEV)              │ 3.86 KB   │ 3.86 KB      │ 0.0%   │ 1.53 KB   │ 1.53 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-dom-unstable-fizz.browser.production.min.js  (UMD_PROD)          │ 1.19 KB   │ 1.19 KB      │ 0.0%   │ 691 B     │ 691 B        │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-dom-unstable-fizz.browser.development.js  (NODE_DEV)             │ 3.69 KB   │ 3.69 KB      │ 0.0%   │ 1.49 KB   │ 1.49 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-dom-unstable-fizz.browser.production.min.js  (NODE_PROD)         │ 1.03 KB   │ 1.03 KB      │ 0.0%   │ 625 B     │ 625 B        │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-dom-unstable-fizz.node.development.js  (NODE_DEV)                │ 4.4 KB    │ 4.4 KB       │ 0.0%   │ 1.63 KB   │ 1.63 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-dom-unstable-fizz.node.production.min.js  (NODE_PROD)            │ 1.19 KB   │ 1.19 KB      │ 0.0%   │ 681 B     │ 681 B        │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ ReactDOMFizzServer-dev.js  (FB_WWW_DEV)                                │ 4.36 KB   │ 4.36 KB      │ 0.0%   │ 1.61 KB   │ 1.61 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ ReactDOMFizzServer-prod.js  (FB_WWW_PROD)                              │ 2.34 KB   │ 2.34 KB      │ 0.0%   │ 910 B     │ 910 B        │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-flight-dom-webpack-server.browser.development.js  (UMD_DEV)      │ 9.29 KB   │ 9.29 KB      │ 0.0%   │ 3.05 KB   │ 3.05 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-flight-dom-webpack-server.browser.production.min.js  (UMD_PROD)  │ 2.83 KB   │ 2.83 KB      │ 0.0%   │ 1.31 KB   │ 1.31 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-flight-dom-webpack-server.browser.development.js  (NODE_DEV)     │ 9.08 KB   │ 9.08 KB      │ 0.0%   │ 3 KB      │ 3 KB         │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-flight-dom-webpack-server.browser.production.min.js  (NODE_PROD) │ 2.63 KB   │ 2.63 KB      │ 0.0%   │ 1.25 KB   │ 1.25 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-flight-dom-webpack-server.node.development.js  (NODE_DEV)        │ 9.99 KB   │ 9.99 KB      │ 0.0%   │ 3.25 KB   │ 3.25 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-flight-dom-webpack-server.node.production.min.js  (NODE_PROD)    │ 2.79 KB   │ 2.79 KB      │ 0.0%   │ 1.27 KB   │ 1.27 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ ReactFlightDOMServer-dev.js  (FB_WWW_DEV)                              │ 9.98 KB   │ 9.98 KB      │ 0.0%   │ 3.24 KB   │ 3.24 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ ReactFlightDOMServer-prod.js  (FB_WWW_PROD)                            │ 5.89 KB   │ 5.89 KB      │ 0.0%   │ 1.75 KB   │ 1.75 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-flight-dom-webpack.development.js  (UMD_DEV)                     │ 8.69 KB   │ 8.69 KB      │ 0.0%   │ 2.58 KB   │ 2.58 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-flight-dom-webpack.production.min.js  (UMD_PROD)                 │ 2.87 KB   │ 2.87 KB      │ 0.0%   │ 1.32 KB   │ 1.32 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-flight-dom-webpack.development.js  (NODE_DEV)                    │ 8.52 KB   │ 8.52 KB      │ 0.0%   │ 2.54 KB   │ 2.54 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-flight-dom-webpack.production.min.js  (NODE_PROD)                │ 2.7 KB    │ 2.7 KB       │ 0.0%   │ 1.26 KB   │ 1.26 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ ReactFlightDOMClient-dev.js  (FB_WWW_DEV)                              │ 8.45 KB   │ 8.45 KB      │ 0.0%   │ 2.52 KB   │ 2.52 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ ReactFlightDOMClient-prod.js  (FB_WWW_PROD)                            │ 6.36 KB   │ 6.36 KB      │ 0.0%   │ 1.84 KB   │ 1.84 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-art.development.js  (UMD_DEV)                                    │ 681.66 KB │ 681.73 KB    │ 0.0%   │ 146.73 KB │ 146.75 KB    │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-art.production.min.js  (UMD_PROD)                                │ 107.37 KB │ 107.37 KB    │ 0.0%   │ 32.49 KB  │ 32.49 KB     │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-art.development.js  (NODE_DEV)                                   │ 612.34 KB │ 612.41 KB    │ 0.0%   │ 129.31 KB │ 129.33 KB    │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-art.production.min.js  (NODE_PROD)                               │ 72.33 KB  │ 72.33 KB     │ 0.0%   │ 21.64 KB  │ 21.64 KB     │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ ReactART-dev.js  (FB_WWW_DEV)                                          │ 625.5 KB  │ 625.58 KB    │ 0.0%   │ 129.21 KB │ 129.23 KB    │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ ReactART-prod.js  (FB_WWW_PROD)                                        │ 238.01 KB │ 238.01 KB    │ 0.0%   │ 40.11 KB  │ 40.11 KB     │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ ReactNativeRenderer-dev.js  (RN_FB_DEV)                                │ 754.26 KB │ 754.33 KB    │ 0.0%   │ 158.65 KB │ 158.67 KB    │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ ReactNativeRenderer-prod.js  (RN_FB_PROD)                              │ 275.06 KB │ 275.06 KB    │ 0.0%   │ 47.07 KB  │ 47.07 KB     │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ ReactNativeRenderer-profiling.js  (RN_FB_PROFILING)                    │ 286.26 KB │ 286.26 KB    │ 0.0%   │ 49.21 KB  │ 49.21 KB     │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ ReactNativeRenderer-dev.js  (RN_OSS_DEV)                               │ 754.08 KB │ 754.16 KB    │ 0.0%   │ 158.55 KB │ 158.58 KB    │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ ReactNativeRenderer-prod.js  (RN_OSS_PROD)                             │ 274.67 KB │ 274.67 KB    │ 0.0%   │ 47 KB     │ 47 KB        │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ ReactNativeRenderer-profiling.js  (RN_OSS_PROFILING)                   │ 285.87 KB │ 285.87 KB    │ 0.0%   │ 49.15 KB  │ 49.15 KB     │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ ReactFabric-dev.js  (RN_FB_DEV)                                        │ 744.88 KB │ 744.96 KB    │ 0.0%   │ 156.42 KB │ 156.46 KB    │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ ReactFabric-prod.js  (RN_FB_PROD)                                      │ 267.44 KB │ 267.44 KB    │ 0.0%   │ 45.81 KB  │ 45.81 KB     │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ ReactFabric-profiling.js  (RN_FB_PROFILING)                            │ 278.59 KB │ 278.59 KB    │ 0.0%   │ 47.93 KB  │ 47.93 KB     │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ ReactFabric-dev.js  (RN_OSS_DEV)                                       │ 744.7 KB  │ 744.78 KB    │ 0.0%   │ 156.34 KB │ 156.37 KB    │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ ReactFabric-prod.js  (RN_OSS_PROD)                                     │ 267.09 KB │ 267.09 KB    │ 0.0%   │ 45.74 KB  │ 45.74 KB     │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ ReactFabric-profiling.js  (RN_OSS_PROFILING)                           │ 278.25 KB │ 278.25 KB    │ 0.0%   │ 47.87 KB  │ 47.87 KB     │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-test-renderer.development.js  (UMD_DEV)                          │ 626.06 KB │ 626.16 KB    │ 0.0%   │ 132.11 KB │ 132.1 KB     │ -0.0%  │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-test-renderer.production.min.js  (UMD_PROD)                      │ 71.98 KB  │ 72.02 KB     │ 0.0%   │ 21.94 KB  │ 21.94 KB     │ -0.0%  │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-test-renderer.development.js  (NODE_DEV)                         │ 621.32 KB │ 621.42 KB    │ 0.0%   │ 130.92 KB │ 130.91 KB    │ -0.0%  │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-test-renderer.production.min.js  (NODE_PROD)                     │ 71.68 KB  │ 71.72 KB     │ +0.1%  │ 21.52 KB  │ 21.52 KB     │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ ReactTestRenderer-dev.js  (FB_WWW_DEV)                                 │ 637.14 KB │ 637.26 KB    │ 0.0%   │ 131.78 KB │ 131.76 KB    │ -0.0%  │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-test-renderer-shallow.development.js  (UMD_DEV)                  │ 37.87 KB  │ 37.87 KB     │ 0.0%   │ 9.82 KB   │ 9.82 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-test-renderer-shallow.production.min.js  (UMD_PROD)              │ 11.64 KB  │ 11.64 KB     │ 0.0%   │ 3.58 KB   │ 3.58 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-test-renderer-shallow.development.js  (NODE_DEV)                 │ 32.41 KB  │ 32.41 KB     │ 0.0%   │ 8.51 KB   │ 8.51 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-test-renderer-shallow.production.min.js  (NODE_PROD)             │ 11.78 KB  │ 11.78 KB     │ 0.0%   │ 3.69 KB   │ 3.69 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ ReactShallowRenderer-dev.js  (FB_WWW_DEV)                              │ 34.43 KB  │ 34.43 KB     │ 0.0%   │ 8.49 KB   │ 8.49 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-noop-renderer.development.js  (NODE_DEV)                         │ 35.62 KB  │ 27.23 KB     │ -23.6% │ 8.18 KB   │ 5.54 KB      │ -32.3% │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-noop-renderer.production.min.js  (NODE_PROD)                     │ 12.01 KB  │ 10.7 KB      │ -10.9% │ 3.83 KB   │ 3.26 KB      │ -14.7% │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-noop-renderer-persistent.development.js  (NODE_DEV)              │ 35.73 KB  │ 27.34 KB     │ -23.5% │ 8.2 KB    │ 5.55 KB      │ -32.3% │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-noop-renderer-persistent.production.min.js  (NODE_PROD)          │ 12.03 KB  │ 10.72 KB     │ -10.9% │ 3.84 KB   │ 3.27 KB      │ -14.7% │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-noop-renderer-server.development.js  (NODE_DEV)                  │ 1.96 KB   │ 1.96 KB      │ 0.0%   │ 890 B     │ 890 B        │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-noop-renderer-server.production.min.js  (NODE_PROD)              │ 882 B     │ 882 B        │ 0.0%   │ 494 B     │ 494 B        │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-noop-renderer-flight-server.development.js  (NODE_DEV)           │ 2.17 KB   │ 2.17 KB      │ 0.0%   │ 943 B     │ 943 B        │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-noop-renderer-flight-server.production.min.js  (NODE_PROD)       │ 988 B     │ 988 B        │ 0.0%   │ 546 B     │ 546 B        │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-noop-renderer-flight-client.development.js  (NODE_DEV)           │ 1.61 KB   │ 1.61 KB      │ 0.0%   │ 762 B     │ 762 B        │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-noop-renderer-flight-client.production.min.js  (NODE_PROD)       │ 555 B     │ 555 B        │ 0.0%   │ 404 B     │ 404 B        │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-reconciler.development.js  (NODE_DEV)                            │ 612.91 KB │ 618.55 KB    │ +0.9%  │ 128.35 KB │ 129.92 KB    │ +1.2%  │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-reconciler.production.min.js  (NODE_PROD)                        │ 75.33 KB  │ 76.4 KB      │ +1.4%  │ 21.92 KB  │ 22.39 KB     │ +2.1%  │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-reconciler-persistent.development.js  (NODE_DEV)                 │ 609.73 KB │ 615.37 KB    │ +0.9%  │ 127.03 KB │ 128.6 KB     │ +1.2%  │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-reconciler-persistent.production.min.js  (NODE_PROD)             │ 72.58 KB  │ 73.64 KB     │ +1.5%  │ 21.28 KB  │ 21.74 KB     │ +2.1%  │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-server.development.js  (NODE_DEV)                                │ 4.82 KB   │ 4.82 KB      │ 0.0%   │ 1.75 KB   │ 1.75 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-server.production.min.js  (NODE_PROD)                            │ 1.2 KB    │ 1.2 KB       │ 0.0%   │ 656 B     │ 656 B        │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-server-flight.development.js  (NODE_DEV)                         │ 10.3 KB   │ 10.3 KB      │ 0.0%   │ 3.29 KB   │ 3.29 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-server-flight.production.min.js  (NODE_PROD)                     │ 2.84 KB   │ 2.84 KB      │ 0.0%   │ 1.27 KB   │ 1.27 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-flight.development.js  (NODE_DEV)                                │ 8.12 KB   │ 8.12 KB      │ 0.0%   │ 2.66 KB   │ 2.66 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-flight.production.min.js  (NODE_PROD)                            │ 2.48 KB   │ 2.48 KB      │ 0.0%   │ 1.16 KB   │ 1.16 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-reconciler-reflection.development.js  (NODE_DEV)                 │ 19.88 KB  │ 19.88 KB     │ 0.0%   │ 6.54 KB   │ 6.54 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-reconciler-reflection.production.min.js  (NODE_PROD)             │ 2.84 KB   │ 2.84 KB      │ 0.0%   │ 1.23 KB   │ 1.23 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-is.development.js  (UMD_DEV)                                     │ 7.07 KB   │ 7.07 KB      │ 0.0%   │ 1.88 KB   │ 1.88 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-is.production.min.js  (UMD_PROD)                                 │ 2.55 KB   │ 2.55 KB      │ 0.0%   │ 970 B     │ 970 B        │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-is.development.js  (NODE_DEV)                                    │ 6.88 KB   │ 6.88 KB      │ 0.0%   │ 1.83 KB   │ 1.83 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-is.production.min.js  (NODE_PROD)                                │ 2.55 KB   │ 2.55 KB      │ 0.0%   │ 907 B     │ 907 B        │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ ReactIs-dev.js  (FB_WWW_DEV)                                           │ 7.04 KB   │ 7.04 KB      │ 0.0%   │ 1.88 KB   │ 1.88 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ ReactIs-prod.js  (FB_WWW_PROD)                                         │ 5.31 KB   │ 5.31 KB      │ 0.0%   │ 1.26 KB   │ 1.26 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-debug-tools.development.js  (NODE_DEV)                           │ 20.22 KB  │ 20.22 KB     │ 0.0%   │ 5.91 KB   │ 5.91 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-debug-tools.production.min.js  (NODE_PROD)                       │ 6.23 KB   │ 6.23 KB      │ 0.0%   │ 2.44 KB   │ 2.44 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-cache.development.js  (UMD_DEV)                                  │ 9.8 KB    │ 9.8 KB       │ 0.0%   │ 3.35 KB   │ 3.35 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-cache.production.min.js  (UMD_PROD)                              │ 2.38 KB   │ 2.38 KB      │ 0.0%   │ 1.2 KB    │ 1.2 KB       │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-cache.development.js  (NODE_DEV)                                 │ 9.58 KB   │ 9.58 KB      │ 0.0%   │ 3.27 KB   │ 3.27 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-cache.production.min.js  (NODE_PROD)                             │ 2.18 KB   │ 2.18 KB      │ 0.0%   │ 1.11 KB   │ 1.11 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ ReactCache-dev.js  (FB_WWW_DEV)                                        │ 8.53 KB   │ 8.53 KB      │ 0.0%   │ 2.79 KB   │ 2.79 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ ReactCache-prod.js  (FB_WWW_PROD)                                      │ 5.14 KB   │ 5.14 KB      │ 0.0%   │ 1.61 KB   │ 1.61 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ create-subscription.development.js  (NODE_DEV)                         │ 7.4 KB    │ 7.4 KB       │ 0.0%   │ 2.79 KB   │ 2.79 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ create-subscription.production.min.js  (NODE_PROD)                     │ 1.97 KB   │ 1.97 KB      │ 0.0%   │ 982 B     │ 982 B        │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ use-subscription.development.js  (NODE_DEV)                            │ 4.98 KB   │ 4.98 KB      │ 0.0%   │ 1.94 KB   │ 1.94 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ use-subscription.production.min.js  (NODE_PROD)                        │ 878 B     │ 878 B        │ 0.0%   │ 485 B     │ 485 B        │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ scheduler.development.js  (NODE_DEV)                                   │ 25.27 KB  │ 25.27 KB     │ 0.0%   │ 6.46 KB   │ 6.46 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ scheduler.production.min.js  (NODE_PROD)                               │ 4.98 KB   │ 4.98 KB      │ 0.0%   │ 1.98 KB   │ 1.98 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ Scheduler-dev.js  (FB_WWW_DEV)                                         │ 25.72 KB  │ 25.72 KB     │ 0.0%   │ 6.56 KB   │ 6.56 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ Scheduler-prod.js  (FB_WWW_PROD)                                       │ 12.52 KB  │ 12.52 KB     │ 0.0%   │ 3.05 KB   │ 3.05 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ Scheduler-profiling.js  (FB_WWW_PROFILING)                             │ 17.11 KB  │ 17.11 KB     │ 0.0%   │ 3.95 KB   │ 3.95 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ scheduler-unstable_mock.development.js  (UMD_DEV)                      │ 22.71 KB  │ 22.71 KB     │ 0.0%   │ 5.4 KB    │ 5.4 KB       │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ scheduler-unstable_mock.production.min.js  (UMD_PROD)                  │ 4.71 KB   │ 4.71 KB      │ 0.0%   │ 1.96 KB   │ 1.96 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ scheduler-unstable_mock.development.js  (NODE_DEV)                     │ 22.51 KB  │ 22.51 KB     │ 0.0%   │ 5.34 KB   │ 5.34 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ scheduler-unstable_mock.production.min.js  (NODE_PROD)                 │ 4.71 KB   │ 4.71 KB      │ 0.0%   │ 1.9 KB    │ 1.9 KB       │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ SchedulerMock-dev.js  (FB_WWW_DEV)                                     │ 22.94 KB  │ 22.94 KB     │ 0.0%   │ 5.45 KB   │ 5.45 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ SchedulerMock-prod.js  (FB_WWW_PROD)                                   │ 12.05 KB  │ 12.05 KB     │ 0.0%   │ 2.83 KB   │ 2.83 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ jest-react.development.js  (NODE_DEV)                                  │ 6.66 KB   │ 6.66 KB      │ 0.0%   │ 2.48 KB   │ 2.48 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ jest-react.production.min.js  (NODE_PROD)                              │ 2.54 KB   │ 2.54 KB      │ 0.0%   │ 1.27 KB   │ 1.27 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ JestReact-dev.js  (FB_WWW_DEV)                                         │ 4.64 KB   │ 4.64 KB      │ 0.0%   │ 1.72 KB   │ 1.72 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ JestReact-prod.js  (FB_WWW_PROD)                                       │ 3.37 KB   │ 3.37 KB      │ 0.0%   │ 1.25 KB   │ 1.25 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ eslint-plugin-react-hooks.development.js  (NODE_DEV)                   │ 76.19 KB  │ 76.19 KB     │ 0.0%   │ 17.5 KB   │ 17.5 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ eslint-plugin-react-hooks.production.min.js  (NODE_PROD)               │ 20.44 KB  │ 20.44 KB     │ 0.0%   │ 6.97 KB   │ 6.97 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-refresh-babel.development.js  (NODE_DEV)                         │ 24.05 KB  │ 24.05 KB     │ 0.0%   │ 5.48 KB   │ 5.48 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-refresh-babel.production.min.js  (NODE_PROD)                     │ 7.18 KB   │ 7.18 KB      │ 0.0%   │ 2.56 KB   │ 2.56 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-refresh-runtime.development.js  (NODE_DEV)                       │ 19.12 KB  │ 19.12 KB     │ 0.0%   │ 5.7 KB    │ 5.7 KB       │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-refresh-runtime.production.min.js  (NODE_PROD)                   │ 362 B     │ 362 B        │ 0.0%   │ 254 B     │ 254 B        │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ ReactFreshRuntime-dev.js  (FB_WWW_DEV)                                 │ 19.2 KB   │ 19.2 KB      │ 0.0%   │ 5.7 KB    │ 5.7 KB       │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ scheduler-tracing.development.js  (NODE_DEV)                           │ 11.91 KB  │ 11.91 KB     │ 0.0%   │ 3.07 KB   │ 3.07 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ scheduler-tracing.production.min.js  (NODE_PROD)                       │ 722 B     │ 722 B        │ 0.0%   │ 372 B     │ 372 B        │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ scheduler-tracing.profiling.min.js  (NODE_PROFILING)                   │ 3.24 KB   │ 3.24 KB      │ 0.0%   │ 980 B     │ 980 B        │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ SchedulerTracing-dev.js  (FB_WWW_DEV)                                  │ 9.84 KB   │ 9.84 KB      │ 0.0%   │ 2.11 KB   │ 2.11 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ SchedulerTracing-prod.js  (FB_WWW_PROD)                                │ 899 B     │ 899 B        │ 0.0%   │ 425 B     │ 425 B        │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ SchedulerTracing-profiling.js  (FB_WWW_PROFILING)                      │ 6.77 KB   │ 6.77 KB      │ 0.0%   │ 1.22 KB   │ 1.22 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-interactions-events/context-menu.development.js  (UMD_DEV)       │ 2.68 KB   │ 2.68 KB      │ 0.0%   │ 997 B     │ 997 B        │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-interactions-events/context-menu.production.min.js  (UMD_PROD)   │ 1.39 KB   │ 1.39 KB      │ 0.0%   │ 720 B     │ 720 B        │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-interactions-events/context-menu.development.js  (NODE_DEV)      │ 2.49 KB   │ 2.49 KB      │ 0.0%   │ 953 B     │ 953 B        │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-interactions-events/context-menu.production.min.js  (NODE_PROD)  │ 1.2 KB    │ 1.2 KB       │ 0.0%   │ 661 B     │ 661 B        │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ ReactEventsContextMenu-dev.js  (FB_WWW_DEV)                            │ 2.46 KB   │ 2.46 KB      │ 0.0%   │ 940 B     │ 940 B        │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ ReactEventsContextMenu-prod.js  (FB_WWW_PROD)                          │ 2.22 KB   │ 2.22 KB      │ 0.0%   │ 807 B     │ 807 B        │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-interactions-events/focus.development.js  (UMD_DEV)              │ 15.68 KB  │ 15.68 KB     │ 0.0%   │ 3.25 KB   │ 3.25 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-interactions-events/focus.production.min.js  (UMD_PROD)          │ 5.33 KB   │ 5.33 KB      │ 0.0%   │ 1.75 KB   │ 1.75 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-interactions-events/focus.development.js  (NODE_DEV)             │ 15.5 KB   │ 15.5 KB      │ 0.0%   │ 3.21 KB   │ 3.21 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-interactions-events/focus.production.min.js  (NODE_PROD)         │ 5.15 KB   │ 5.15 KB      │ 0.0%   │ 1.69 KB   │ 1.69 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ ReactEventsFocus-dev.js  (FB_WWW_DEV)                                  │ 15.64 KB  │ 15.64 KB     │ 0.0%   │ 3.27 KB   │ 3.27 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ ReactEventsFocus-prod.js  (FB_WWW_PROD)                                │ 12.01 KB  │ 12.01 KB     │ 0.0%   │ 2.3 KB    │ 2.3 KB       │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-interactions-events/hover.development.js  (UMD_DEV)              │ 7.9 KB    │ 7.9 KB       │ 0.0%   │ 1.65 KB   │ 1.65 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-interactions-events/hover.production.min.js  (UMD_PROD)          │ 3.46 KB   │ 3.46 KB      │ 0.0%   │ 1.2 KB    │ 1.2 KB       │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-interactions-events/hover.development.js  (NODE_DEV)             │ 7.71 KB   │ 7.71 KB      │ 0.0%   │ 1.6 KB    │ 1.6 KB       │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-interactions-events/hover.production.min.js  (NODE_PROD)         │ 3.28 KB   │ 3.28 KB      │ 0.0%   │ 1.15 KB   │ 1.15 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ ReactEventsHover-dev.js  (FB_WWW_DEV)                                  │ 7.63 KB   │ 7.63 KB      │ 0.0%   │ 1.63 KB   │ 1.63 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ ReactEventsHover-prod.js  (FB_WWW_PROD)                                │ 6.6 KB    │ 6.6 KB       │ 0.0%   │ 1.46 KB   │ 1.46 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-interactions-events/input.development.js  (UMD_DEV)              │ 4.52 KB   │ 4.52 KB      │ 0.0%   │ 1.44 KB   │ 1.44 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-interactions-events/input.production.min.js  (UMD_PROD)          │ 1.84 KB   │ 1.84 KB      │ 0.0%   │ 978 B     │ 978 B        │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-interactions-events/input.development.js  (NODE_DEV)             │ 4.34 KB   │ 4.34 KB      │ 0.0%   │ 1.39 KB   │ 1.39 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-interactions-events/input.production.min.js  (NODE_PROD)         │ 1.66 KB   │ 1.66 KB      │ 0.0%   │ 915 B     │ 915 B        │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ ReactEventsInput-dev.js  (FB_WWW_DEV)                                  │ 4.41 KB   │ 4.41 KB      │ 0.0%   │ 1.39 KB   │ 1.39 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ ReactEventsInput-prod.js  (FB_WWW_PROD)                                │ 3.23 KB   │ 3.23 KB      │ 0.0%   │ 1.16 KB   │ 1.16 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-interactions-events/keyboard.development.js  (UMD_DEV)           │ 6.09 KB   │ 6.09 KB      │ 0.0%   │ 2.28 KB   │ 2.28 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-interactions-events/keyboard.production.min.js  (UMD_PROD)       │ 2.43 KB   │ 2.43 KB      │ 0.0%   │ 1.23 KB   │ 1.23 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-interactions-events/keyboard.development.js  (NODE_DEV)          │ 5.9 KB    │ 5.9 KB       │ 0.0%   │ 2.24 KB   │ 2.24 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-interactions-events/keyboard.production.min.js  (NODE_PROD)      │ 2.25 KB   │ 2.25 KB      │ 0.0%   │ 1.17 KB   │ 1.17 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ ReactEventsKeyboard-dev.js  (FB_WWW_DEV)                               │ 5.89 KB   │ 5.89 KB      │ 0.0%   │ 2.24 KB   │ 2.24 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ ReactEventsKeyboard-prod.js  (FB_WWW_PROD)                             │ 4.03 KB   │ 4.03 KB      │ 0.0%   │ 1.42 KB   │ 1.42 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-interactions-events/press.development.js  (UMD_DEV)              │ 8.2 KB    │ 8.2 KB       │ 0.0%   │ 2.61 KB   │ 2.61 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-interactions-events/press.production.min.js  (UMD_PROD)          │ 2.41 KB   │ 2.41 KB      │ 0.0%   │ 991 B     │ 991 B        │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-interactions-events/press.development.js  (NODE_DEV)             │ 7.92 KB   │ 7.92 KB      │ 0.0%   │ 2.53 KB   │ 2.53 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-interactions-events/press.production.min.js  (NODE_PROD)         │ 2.13 KB   │ 2.13 KB      │ 0.0%   │ 907 B     │ 907 B        │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ ReactEventsPress-dev.js  (FB_WWW_DEV)                                  │ 6.81 KB   │ 6.81 KB      │ 0.0%   │ 1.97 KB   │ 1.97 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ ReactEventsPress-prod.js  (FB_WWW_PROD)                                │ 4.24 KB   │ 4.24 KB      │ 0.0%   │ 1.1 KB    │ 1.1 KB       │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-interactions-events/press-legacy.development.js  (UMD_DEV)       │ 23.93 KB  │ 23.93 KB     │ 0.0%   │ 6.12 KB   │ 6.12 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-interactions-events/press-legacy.production.min.js  (UMD_PROD)   │ 7.27 KB   │ 7.27 KB      │ 0.0%   │ 2.71 KB   │ 2.71 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-interactions-events/press-legacy.development.js  (NODE_DEV)      │ 23.74 KB  │ 23.74 KB     │ 0.0%   │ 6.07 KB   │ 6.07 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-interactions-events/press-legacy.production.min.js  (NODE_PROD)  │ 7.08 KB   │ 7.08 KB      │ 0.0%   │ 2.66 KB   │ 2.66 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ ReactEventsPressLegacy-dev.js  (FB_WWW_DEV)                            │ 23.49 KB  │ 23.49 KB     │ 0.0%   │ 5.71 KB   │ 5.71 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ ReactEventsPressLegacy-prod.js  (FB_WWW_PROD)                          │ 16.84 KB  │ 16.84 KB     │ 0.0%   │ 3.69 KB   │ 3.69 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-interactions-events/tap.development.js  (UMD_DEV)                │ 18.24 KB  │ 18.24 KB     │ 0.0%   │ 3.92 KB   │ 3.92 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-interactions-events/tap.production.min.js  (UMD_PROD)            │ 6.33 KB   │ 6.33 KB      │ 0.0%   │ 2.37 KB   │ 2.37 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-interactions-events/tap.development.js  (NODE_DEV)               │ 18.06 KB  │ 18.06 KB     │ 0.0%   │ 3.87 KB   │ 3.87 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ react-interactions-events/tap.production.min.js  (NODE_PROD)           │ 6.17 KB   │ 6.17 KB      │ 0.0%   │ 2.34 KB   │ 2.34 KB      │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ ReactEventsTap-dev.js  (FB_WWW_DEV)                                    │ 18.04 KB  │ 18.04 KB     │ 0.0%   │ 3.9 KB    │ 3.9 KB       │ 0.0%   │
├────────────────────────────────────────────────────────────────────────┼───────────┼──────────────┼────────┼───────────┼──────────────┼────────┤
│ ReactEventsTap-prod.js  (FB_WWW_PROD)                                  │ 14.26 KB  │ 14.26 KB     │ 0.0%   │ 3.05 KB   │ 3.05 KB      │ 0.0%   │
└────────────────────────────────────────────────────────────────────────┴───────────┴──────────────┴────────┴───────────┴──────────────┴────────┘
✨  Done in 594.50s.

@threepointone threepointone merged commit 3e9251d into facebook:master Feb 3, 2020
threepointone added a commit to threepointone/react that referenced this pull request Feb 6, 2020
Following up from facebook#17915 where we generated testing builds for `react-dom`, this PR uses those builds for our own tests.

- fixes `ReactFeatureFlags.testing` to use all the default flags
- changes `ReactFeatureFlags.readonly` to return `isTestEnvironment: true` (this might not strictly be needed)
- with jest, mocks `react-dom` with the testing version, both for source and builds
- uses `ReactDOM.act` in one of these tests to verify it actually works
threepointone added a commit to threepointone/react that referenced this pull request Feb 6, 2020
Following up from facebook#17915 where we generated testing builds for `react-dom`, this PR uses those builds for our own tests.

- fixes `ReactFeatureFlags.testing` to use all the default flags
- changes `ReactFeatureFlags.readonly` to return `isTestEnvironment: true` (this might not strictly be needed)
- with jest, mocks `react-dom` with the testing version, both for source and builds
- uses `ReactDOM.act` in one of these tests to verify it actually works
threepointone added a commit to threepointone/react that referenced this pull request Feb 6, 2020
Following up from facebook#17915 where we generated testing builds for `react-dom`, this PR uses those builds for our own tests.

- fixes `ReactFeatureFlags.testing` to use all the default flags
- changes `ReactFeatureFlags.readonly` to return `isTestEnvironment: true` (this might not strictly be needed)
- with jest, mocks `react-dom` with the testing version, both for source and builds
- uses `ReactDOM.act` in one of these tests to verify it actually works
threepointone added a commit to threepointone/react that referenced this pull request Feb 6, 2020
Following up from facebook#17915 where we generated testing builds for `react-dom`, this PR uses those builds for our own tests.

- fixes `ReactFeatureFlags.testing` to use all the default flags
- changes `ReactFeatureFlags.readonly` to return `isTestEnvironment: true` (this might not strictly be needed)
- with jest, mocks `react-dom` with the testing version, both for source and builds
- uses `ReactDOM.act` in one of these tests to verify it actually works
threepointone added a commit to threepointone/react that referenced this pull request Feb 6, 2020
Following up from facebook#17915 where we generated testing builds for `react-dom`, this PR uses those builds for our own tests.

- fixes `ReactFeatureFlags.testing` to use all the default flags
- changes `ReactFeatureFlags.readonly` to return `isTestEnvironment: true` (this might not strictly be needed)
- with jest, mocks `react-dom` with the testing version, both for source and builds
- uses `ReactDOM.act` in one of these tests to verify it actually works
threepointone added a commit to threepointone/react that referenced this pull request Feb 6, 2020
Following up from facebook#17915 where we generated testing builds for `react-dom`, this PR uses those builds for our own tests.

- fixes `ReactFeatureFlags.testing` to use all the default flags
- changes `ReactFeatureFlags.readonly` to return `isTestEnvironment: true` (this might not strictly be needed)
- with jest, mocks `react-dom` with the testing version, both for source and builds
- uses `ReactDOM.act` in one of these tests to verify it actually works
threepointone added a commit to threepointone/react that referenced this pull request Feb 6, 2020
Following up from facebook#17915 where we generated testing builds for `react-dom`, this PR uses those builds for our own tests.

- fixes `ReactFeatureFlags.testing` to use all the default flags
- changes `ReactFeatureFlags.readonly` to return `isTestEnvironment: true` (this might not strictly be needed)
- with jest, mocks `react-dom` with the testing version, both for source and builds
- uses `ReactDOM.act` in one of these tests to verify it actually works
threepointone added a commit to threepointone/react that referenced this pull request Feb 6, 2020
Following up from facebook#17915 where we generated testing builds for `react-dom`, this PR uses those builds for our own tests.

- fixes `ReactFeatureFlags.testing` to use all the default flags
- changes `ReactFeatureFlags.readonly` to return `isTestEnvironment: true` (this might not strictly be needed)
- with jest, mocks `react-dom` with the testing version, both for source and builds
- uses `ReactDOM.act` in one of these tests to verify it actually works
threepointone added a commit to threepointone/react that referenced this pull request Feb 6, 2020
Following up from facebook#17915 where we generated testing builds for `react-dom`, this PR uses those builds for our own tests.

- fixes `ReactFeatureFlags.testing` to use all the default flags
- changes `ReactFeatureFlags.readonly` to return `isTestEnvironment: true` (this might not strictly be needed)
- with jest, mocks `react-dom` with the testing version, both for source and builds
- uses `ReactDOM.act` in one of these tests to verify it actually works
threepointone added a commit to threepointone/react that referenced this pull request Feb 6, 2020
Following up from facebook#17915 where we generated testing builds for `react-dom`, this PR uses those builds for our own tests.

- fixes `ReactFeatureFlags.testing` to use all the default flags
- changes `ReactFeatureFlags.readonly` to return `isTestEnvironment: true` (this might not strictly be needed)
- with jest, mocks `react-dom` with the testing version, both for source and builds
- uses `ReactDOM.act` in one of these tests to verify it actually works
threepointone added a commit to threepointone/react that referenced this pull request Feb 7, 2020
Following up from facebook#17915 where we generated testing builds for `react-dom`, this PR uses those builds for our own tests.

- fixes `ReactFeatureFlags.testing` to use all the default flags
- changes `ReactFeatureFlags.readonly` to return `isTestEnvironment: true` (this might not strictly be needed)
- with jest, mocks `react-dom` with the testing version, both for source and builds
- uses `ReactDOM.act` in one of these tests to verify it actually works
threepointone added a commit to threepointone/react that referenced this pull request Feb 7, 2020
Following up from facebook#17915 where we generated testing builds for `react-dom`, this PR uses those builds for our own tests.

- fixes `ReactFeatureFlags.testing` to use all the default flags
- changes `ReactFeatureFlags.readonly` to return `isTestEnvironment: true` (this might not strictly be needed)
- with jest, mocks `react-dom` with the testing version, both for source and builds
- uses `ReactDOM.act` in one of these tests to verify it actually works
threepointone added a commit to threepointone/react that referenced this pull request Feb 7, 2020
Following up from facebook#17915 where we generated testing builds for `react-dom`, this PR uses those builds for our own tests.

- fixes `ReactFeatureFlags.testing` to use all the default flags
- changes `ReactFeatureFlags.readonly` to return `isTestEnvironment: true` (this might not strictly be needed)
- with jest, mocks `react-dom` with the testing version, both for source and builds
- uses `ReactDOM.act` in one of these tests to verify it actually works
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
CLA Signed React Core Team Opened by a member of the React Core Team
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants