3.1.7
This commit is contained in:
Родитель
fb71e28dd6
Коммит
94bc1e2bd8
|
@ -1,3 +1,8 @@
|
|||
## 3.1.7
|
||||
* Support new "Loaded scripts" view in VS Code 1.15 - [Microsoft/vscode-chrome-debug-core#118](https://github.com/microsoft/vscode-chrome-debug-core/issues/118)
|
||||
* Fix hover on variables defined in async functions using TS transpilation - [Microsoft/vscode#31469](https://github.com/Microsoft/vscode/issues/31469)
|
||||
* Decrease extension package size
|
||||
|
||||
## 3.1.6
|
||||
* Support `console.dir` and other missing `console` APIs - [Microsoft/vscode#29602](https://github.com/Microsoft/vscode/issues/29602)
|
||||
* Resolve longer `pathMapping` mappings before resolving shorter ones - [#444](https://github.com/microsoft/vscode-chrome-debug/issues/444)
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "debugger-for-chrome",
|
||||
"displayName": "Debugger for Chrome",
|
||||
"version": "3.1.6",
|
||||
"version": "3.1.7",
|
||||
"icon": "images/icon.png",
|
||||
"description": "Debug your JavaScript code in the Chrome browser, or any other target that supports the Chrome Debugger protocol.",
|
||||
"author": {
|
||||
|
@ -21,7 +21,7 @@
|
|||
],
|
||||
"license": "SEE LICENSE IN LICENSE.txt",
|
||||
"dependencies": {
|
||||
"vscode-chrome-debug-core": "3.16.0",
|
||||
"vscode-chrome-debug-core": "3.16.4",
|
||||
"vscode-debugadapter": "^1.22.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
|
|
@ -147,11 +147,11 @@ export class ChromeDebugAdapter extends CoreDebugAdapter {
|
|||
super.onResumed();
|
||||
}
|
||||
|
||||
public disconnect(): void {
|
||||
public disconnect(args: DebugProtocol.DisconnectArguments): void {
|
||||
const hadTerminated = this._hasTerminated;
|
||||
|
||||
// Disconnect before killing Chrome, because running "taskkill" when it's paused sometimes doesn't kill it
|
||||
super.disconnect();
|
||||
super.disconnect(args);
|
||||
|
||||
if (this._chromeProc && !hadTerminated) {
|
||||
// Only kill Chrome if the 'disconnect' originated from vscode. If we previously terminated
|
||||
|
|
Загрузка…
Ссылка в новой задаче