This commit is contained in:
Rob Lourens 2017-08-15 22:23:37 -07:00
Родитель e216c45533
Коммит a7428008f2
5 изменённых файлов: 11 добавлений и 8 удалений

3
.vscode/launch.json поставляемый
Просмотреть файл

@ -8,9 +8,6 @@
"protocol": "inspector",
"request": "launch",
"cwd": "${workspaceRoot}",
"runtimeArgs": [
"--preserve-symlinks"
],
"program": "${workspaceRoot}/out/bundle.js",
// "runtimeExecutable": "/Users/roblou/.nvm/versions/node/v6.5.0/bin/node",
"stopOnEntry": false,

3
.vscode/tasks.json поставляемый
Просмотреть файл

@ -8,8 +8,7 @@
"group": {
"kind": "build",
"isDefault": true
},
"isBackground": true
}
}
]
}

Просмотреть файл

@ -1,3 +1,9 @@
## 3.1.8
* Fix for old runtimes that don't support setAsyncCallStackDepth - [Microsoft/vscode-chrome-debug-core#226](https://github.com/microsoft/vscode-chrome-debug-core/issues/226)
* Download sourcemaps referenced with file:/// properly - [Microsoft/vscode-chrome-debug-core#205](https://github.com/microsoft/vscode-chrome-debug-core/issues/205)
* Fix errors when stepping too quickly - [Microsoft/vscode#27696](https://github.com/Microsoft/vscode/issues/27696)
* Fix some values not formatted correctly in the debug console - [Microsoft/vscode#32064](https://github.com/Microsoft/vscode/issues/32064)
## 3.1.7
* 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

Просмотреть файл

@ -1,7 +1,7 @@
{
"name": "debugger-for-chrome",
"displayName": "Debugger for Chrome",
"version": "3.1.7",
"version": "3.1.8",
"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.4",
"vscode-chrome-debug-core": "3.16.5",
"vscode-debugadapter": "^1.22.0"
},
"devDependencies": {

3
testapp/.vscode/launch.json поставляемый
Просмотреть файл

@ -2,7 +2,7 @@
"version": "0.1.0",
"configurations": [
{
"debugServer": 4712,
// "debugServer": 4712,
"name": "test chrome",
"type": "chrome",
"request": "launch",
@ -14,6 +14,7 @@
},
// "webRoot": "${workspaceRoot}/wwwroot",
"showAsyncStacks": true,
// "runtimeExecutable": "/Applications/Google Chrome Canary.app/Contents/MacOS/Google Chrome Canary",
"disableNetworkCache": true,
"trace": true
},