react/packages/react-devtools-scheduling-p...
Brian Vaughn 2bf4805e4b
Update entry point exports (#21488)
The following APIs have been added to the `react` stable entry point:
* `SuspenseList`
* `startTransition`
* `unstable_createMutableSource`
* `unstable_useMutableSource`
* `useDeferredValue`
* `useTransition`

The following APIs have been added or removed from the `react-dom` stable entry point:
* `createRoot`
* `unstable_createPortal` (removed)

The following APIs have been added to the `react-is` stable entry point:
* `SuspenseList`
* `isSuspenseList`

The following feature flags have been changed from experimental to true:
* `enableLazyElements`
* `enableSelectiveHydration`
* `enableSuspenseServerRenderer`
2021-05-12 11:28:14 -04:00
..
src Update entry point exports (#21488) 2021-05-12 11:28:14 -04:00
README.md Add scheduling profiler deployment CI job (#19874) 2020-09-22 08:34:06 -04:00
buildUtils.js Scheduling Profiler: Redesign with DevTools styling (#19707) 2020-09-03 12:08:40 -04:00
package.json Add scheduling profiler deployment CI job (#19874) 2020-09-22 08:34:06 -04:00
vercel.json Add scheduling profiler deployment CI job (#19874) 2020-09-22 08:34:06 -04:00
webpack.config.js Update scheduling profiler Webpack config (#20867) 2021-02-23 12:15:36 -05:00

README.md

Experimental React Concurrent Mode Profiler

https://react-devtools-scheduling-profiler.vercel.app/

Setting up continuous deployment with CircleCI and Vercel

These instructions are intended for internal use, but may be useful if you are setting up a custom production deployment of the scheduling profiler.

  1. Create a Vercel token at https://vercel.com/account/tokens.
  2. Configure CircleCI:
    1. In CircleCI, navigate to the repository's Project Settings.
    2. In the Advanced tab, ensure that "Pass secrets to builds from forked pull requests" is set to false.
    3. In the Environment Variables tab, add the Vercel token as a new SCHEDULING_PROFILER_DEPLOY_VERCEL_TOKEN environment variable.

The Vercel project will be created when the deploy job runs.