Skip to content

Commit

Permalink
Docs: update for the new API release
Browse files Browse the repository at this point in the history
  • Loading branch information
raycastbot committed Jun 19, 2024
1 parent 0166e51 commit 9f44cac
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/.config.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"version": "1.76.1"
"version": "1.77.0"
}
4 changes: 2 additions & 2 deletions docs/basics/debug-an-extension.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ We support [React Developer Tools](https://github.com/facebook/react/tree/main/p
To get started, add the `react-devtools` to your extension. Open a terminal, navigate to your extension directory and run the following command:

```typescript
npm install --save-dev react-devtools@4.28.4
npm install --save-dev react-devtools@5.2.0
```

Then re-build your extension with `npm run dev`, open the command you want to debug in Raycast, and launch the React Developer Tools with `` `` `D`. Now select one of the React components, change a prop in the right sidebar, and hit enter. You'll notice the change immediately in Raycast.
Expand All @@ -67,7 +67,7 @@ Then re-build your extension with `npm run dev`, open the command you want to de
If you prefer to install the `react-devtools` globally, you can do the following:

```bash
npm install -g react-devtools@4.28.4
npm install -g react-devtools@5.2.0
```

Then you can run `react-devtools` from a terminal to launch the standalone DevTools app. Raycast connects automatically, and you can start debugging your component tree.
Expand Down

0 comments on commit 9f44cac

Please sign in to comment.