Skip to content

Commit

Permalink
Replaces usages of workspaceRoot with workspaceFolder. (#34887)
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgefilipecosta authored Sep 17, 2021
1 parent 43a6e88 commit 1059d10
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .vscode/launch-example.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
"type": "node",
"request": "launch",
"name": "Debug current e2e test",
"program": "${workspaceRoot}/node_modules/@wordpress/scripts/bin/wp-scripts.js",
"program": "${workspaceFolder}/node_modules/@wordpress/scripts/bin/wp-scripts.js",
"args": [
"test-e2e",
"--config=${workspaceRoot}/packages/e2e-tests/jest.config.js",
"--config=${workspaceFolder}/packages/e2e-tests/jest.config.js",
"--verbose=true",
"--runInBand",
"--watch",
Expand Down
4 changes: 2 additions & 2 deletions packages/e2e-tests/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@ Debugging in a Chrome browser can be replaced with `vscode`'s debugger by adding
"type": "node",
"request": "launch",
"name": "Debug current e2e test",
"program": "${workspaceRoot}/node_modules/@wordpress/scripts/bin/wp-scripts.js",
"program": "${workspaceFolder}/node_modules/@wordpress/scripts/bin/wp-scripts.js",
"args": [
"test-e2e",
"--config=${workspaceRoot}/packages/e2e-tests/jest.config.js",
"--config=${workspaceFolder}/packages/e2e-tests/jest.config.js",
"--verbose=true",
"--runInBand",
"--watch",
Expand Down
2 changes: 1 addition & 1 deletion packages/env/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ You should only have to translate `port` and `pathMappings` to the format used b
"request": "launch",
"port": 9003,
"pathMappings": {
"/var/www/html/wp-content/plugins/gutenberg": "${workspaceRoot}/"
"/var/www/html/wp-content/plugins/gutenberg": "${workspaceFolder}/"
}
}
```
Expand Down

0 comments on commit 1059d10

Please sign in to comment.