react/packages/react-devtools-extensions
Brian Vaughn b6606ecba8
DevTools shows unsupported renderer version dialog (#16897)
* DevTools shows unsupported renderer version dialog

* Optimistic CHANGELOG udpate
2019-09-26 08:41:46 -07:00
..
.circleci Reorganized things again into packages 2019-08-13 11:37:25 -07:00
chrome React DevTools version bump 4.0.6 -> 4.1.0 2019-09-19 15:11:48 -07:00
firefox React DevTools version bump 4.0.6 -> 4.1.0 2019-09-19 15:11:48 -07:00
flow-typed Removed unused Chrome Flow types 2019-08-27 10:54:21 -07:00
icons Fixed a bunch of Lint issues 2019-08-13 21:59:07 -07:00
popups Correct link for troubleshooting react-dev-tools (#16690) (#16708) 2019-09-10 13:14:19 -07:00
src DevTools shows unsupported renderer version dialog (#16897) 2019-09-26 08:41:46 -07:00
build.js Merged changes from 4.0.0 -> 4.0.5 from DevTools fork 2019-08-20 11:34:51 -07:00
deploy.chrome.html Fixed a bunch of Lint issues 2019-08-13 21:59:07 -07:00
deploy.firefox.html Fixed a bunch of Lint issues 2019-08-13 21:59:07 -07:00
deploy.html Merged changes from 4.0.0 -> 4.0.5 from DevTools fork 2019-08-20 11:34:51 -07:00
deploy.js Cleaned up some extnesions build script stuff 2019-08-13 22:15:38 -07:00
main.html Fixed a bunch of Lint issues 2019-08-13 21:59:07 -07:00
package.json Updated DevTools extension build script to work when run remotely (#16603) 2019-08-28 17:01:26 -07:00
panel.html Fixed a bunch of Lint issues 2019-08-13 21:59:07 -07:00
README.md Updated extensions build-from-source instructions in README 2019-08-29 08:49:08 -07:00
utils.js Cleaned up some extnesions build script stuff 2019-08-13 22:15:38 -07:00
webpack.backend.js Removed unused __TEST__ files 2019-08-14 19:03:32 -07:00
webpack.config.js Removed unused __TEST__ files 2019-08-14 19:03:32 -07:00

This is the source code for the React DevTools browser extension.

Installation

The easiest way to install this extension is as a browser add-on:

Development

You can also build and install this extension from source.

DevTools embeds local versions of several NPM packages also in this workspae. If you have not already built them, you'll need to do that before getting started by running the following command in the root directory of this repository:

yarn build -- react,react-dom,react-is,scheduler --type=NODE

Once the above packages have been built, you can build the extension by running:

cd packages/react-devtools-extensions/

yarn build:chrome # => packages/react-devtools-extensions/chrome/build
yarn run test:chrome # Test Chrome extension

yarn build:firefox # => packages/react-devtools-extensions/firefox/build
yarn run test:firefox # Test Firefox extension