-
Notifications
You must be signed in to change notification settings - Fork 291
Commit
Closes microsoft/vscode#12066
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,8 @@ This changelog records changes to stable releases since 1.50.2. "TBA" changes he | |
|
||
## Nightly | ||
|
||
- feat: support renamed sourcemap identifiers ([ref](https://github.com/microsoft/vscode/issues/12066)) | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
aleclarson
|
||
- feat: support DAP `hitBreakpointIds` ([#994](https://github.com/microsoft/vscode-js-debug/issues/994)) | ||
- refactor: include a mandator path in the CDP proxy ([#987](https://github.com/microsoft/vscode-js-debug/issues/987)) | ||
- fix: make sure servers are listening before returning | ||
- fix: don't send infinite telemetry requests for React Native ([#981](https://github.com/microsoft/vscode-js-debug/issues/981)) | ||
|
@@ -12,7 +14,6 @@ This changelog records changes to stable releases since 1.50.2. "TBA" changes he | |
- chore: log errors activating auto attach | ||
- fix: intermittent debug failures with browsers, especially Electron ([ref](https://github.com/microsoft/vscode/issues/123420))) | ||
- fix: add additional languages for browser debugging ([ref](https://github.com/microsoft/vscode/issues/123484)) | ||
- feat: support DAP `hitBreakpointIds` ([#994](https://github.com/microsoft/vscode-js-debug/issues/994)) | ||
- feat: allow limited adjustment of launch config options during restart ([ref](https://github.com/microsoft/vscode/issues/118196)) | ||
|
||
## v1.56 (April 2021) | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
{ | ||
"scripts": { | ||
"start": "node main" | ||
"start": "node main", | ||
"minify": "terser main.js -m -o main.min.js --source-map \"url=main.min.js.map\" --toplevel" | ||
}, | ||
"devDependencies": { | ||
"terser": "^5.7.0" | ||
} | ||
} |
@connor4312 Is this feature tested with shadowed variables? I'm seeing an issue there. The variable in a higher scope seems to be preferred, when it should be the variable in the lowest scope. This leads to there being no way to inspect the (lower) variable in Watch view and the Debug Console.