Skip to content

Commit 6ba92d4

Browse files
authored
comment out Positron Web configs from launch.json (#5936)
### Summary Commented out the launch.json configs for Positron Web (Chrome) and Positron Web (Edge), which we don't use as much as the Positron Server (Web, [BROWSER]) configs. The Positron Web configurations can be confused with the Positron Server Web configurations, so removing them alleviates moments of 🤨🤔🧐🤷. Commenting these configurations out removes them from the RUN AND DEBUG configurations dropdown. I commented them out instead of removing them altogether, just in case a dev wants to uncomment and run the Web configurations for some reason. #### Before <img width="406" alt="image" src="https://github.com/user-attachments/assets/637464b2-460e-4009-9948-a8891d82b1d5" /> #### After <img width="406" alt="image" src="https://github.com/user-attachments/assets/13dbd251-7f3f-457f-8d3c-3b70dfa01602" /> ### Release Notes #### New Features - N/A #### Bug Fixes - N/A ### QA Notes Positron Web (Chrome) and Positron Web (Edge) should no longer show in the RUN AND DEBUG configurations dropdown.
1 parent 5836ad3 commit 6ba92d4

File tree

1 file changed

+30
-27
lines changed

1 file changed

+30
-27
lines changed

.vscode/launch.json

+30-27
Original file line numberDiff line numberDiff line change
@@ -341,33 +341,36 @@
341341
"order": 3
342342
}
343343
},
344-
{
345-
"type": "chrome",
346-
"request": "launch",
347-
"outFiles": [],
348-
"perScriptSourcemaps": "yes",
349-
"name": "Positron Web (Chrome)",
350-
"url": "http://localhost:8080",
351-
"preLaunchTask": "Run code web",
352-
"presentation": {
353-
"group": "0_vscode",
354-
"order": 3
355-
}
356-
},
357-
{
358-
"type": "msedge",
359-
"request": "launch",
360-
"outFiles": [],
361-
"perScriptSourcemaps": "yes",
362-
"name": "Positron Web (Edge)",
363-
"url": "http://localhost:8080",
364-
"pauseForSourceMap": false,
365-
"preLaunchTask": "Run code web",
366-
"presentation": {
367-
"group": "0_vscode",
368-
"order": 3
369-
}
370-
},
344+
// --- Start Positron ---
345+
// Remove `Positron Web` confiigurations since we don't use them.
346+
// {
347+
// "type": "chrome",
348+
// "request": "launch",
349+
// "outFiles": [],
350+
// "perScriptSourcemaps": "yes",
351+
// "name": "Positron Web (Chrome)",
352+
// "url": "http://localhost:8080",
353+
// "preLaunchTask": "Run code web",
354+
// "presentation": {
355+
// "group": "0_vscode",
356+
// "order": 3
357+
// }
358+
// },
359+
// {
360+
// "type": "msedge",
361+
// "request": "launch",
362+
// "outFiles": [],
363+
// "perScriptSourcemaps": "yes",
364+
// "name": "Positron Web (Edge)",
365+
// "url": "http://localhost:8080",
366+
// "pauseForSourceMap": false,
367+
// "preLaunchTask": "Run code web",
368+
// "presentation": {
369+
// "group": "0_vscode",
370+
// "order": 3
371+
// }
372+
// },
373+
// --- End Positron ---
371374
{
372375
"type": "node",
373376
"request": "launch",

0 commit comments

Comments
 (0)