From f90d9808aa536bd025c089c95edcef5bed0bea4c Mon Sep 17 00:00:00 2001 From: Lucas Costi Date: Tue, 10 Aug 2021 15:19:07 +1000 Subject: [PATCH] Numbering fix (#20753) --- contributing/development.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/contributing/development.md b/contributing/development.md index 8bdc7af8c3a3..77449413e2a2 100644 --- a/contributing/development.md +++ b/contributing/development.md @@ -41,10 +41,10 @@ In a matter of minutes, you will be ready to edit, preview and test your changes This repo has configuration for debugging with VS Code's built-in Node Debugger. 1. After running the build steps, start the app by running `npm run debug`. -2. In VS Code, click on the Debugging icon in the Activity Bar to bring up the Debug view. -3. In the Debug View, select the **'Node: Nodemon'** configuration, then press F5 or click the green play button. You should see all of your running node processes. -4. Select the node process that's started with the `--inspect` flag. -5. Debugger has now been attached. Enjoy! +1. In VS Code, click on the Debugging icon in the Activity Bar to bring up the Debug view. +1. In the Debug View, select the **'Node: Nodemon'** configuration, then press F5 or click the green play button. You should see all of your running node processes. +1. Select the node process that's started with the `--inspect` flag. +1. Debugger has now been attached. Enjoy! For more detailed instructions, please see this [VS Code recipe](https://github.com/Microsoft/vscode-recipes/tree/master/nodemon). You can also learn more about debugging using VS Code [here](https://code.visualstudio.com/docs/editor/debugging).