-
Notifications
You must be signed in to change notification settings - Fork 47.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated README docs, example screenshots, etc
- Loading branch information
Brian Vaughn
committed
Aug 27, 2019
1 parent
7153dd5
commit bc8b153
Showing
5 changed files
with
66 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,22 @@ | ||
This is the source code for the React DevTools browser extension. | ||
|
||
# Installation | ||
## Installation | ||
|
||
The easiest way to install this extension is as a browser add-on: | ||
* [Chrome web store](https://chrome.google.com/webstore/detail/react-developer-tools/fmkadmapgofadopljbjfkapdkoienihi?hl=en) | ||
* [Firefox Add-ons](https://addons.mozilla.org/en-US/firefox/addon/react-devtools/) | ||
|
||
# Build | ||
## Development | ||
|
||
You can also build and install from source: | ||
```sh | ||
yarn install | ||
|
||
yarn build:chrome # builds at "packages/react-devtools-extensions/chrome/build" | ||
yarn build:firefox # builds at "packages/react-devtools-extensions/firefox/build" | ||
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 | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,17 @@ | ||
Harness for testing local changes to the `react-devtools-inline` and `react-devtools-shared` packages. | ||
Harness for testing local changes to the `react-devtools-inline` and `react-devtools-shared` packages. | ||
|
||
## Development | ||
|
||
This target should be run in parallel with the `react-devtools-inline` package. The first step then is to watch for changes to that target: | ||
```sh | ||
cd packages/react-devtools-inline | ||
|
||
yarn start | ||
``` | ||
|
||
Next, watch for changes to the test harness: | ||
```sh | ||
cd packages/react-devtools-shell | ||
|
||
yarn start | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters