This commit is contained in:
Rob Lourens 2017-03-24 18:14:52 -07:00
Родитель e24b8ccce2
Коммит 2fc64549a4
3 изменённых файлов: 12 добавлений и 6 удалений

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

@ -9,10 +9,10 @@
"request": "launch",
"cwd": "${workspaceRoot}",
"program": "${workspaceRoot}/out/bundle.js",
"runtimeArgs": ["--harmony"],
// "runtimeExecutable": "/Users/roblou/.nvm/versions/node/v6.5.0/bin/node",
"stopOnEntry": false,
"args": [ "--server=4712" ],
"sourceMaps": true,
// "trace": "verbose",
"outFiles": ["${workspaceRoot}/out/**/*.js"]
},
{
@ -30,7 +30,6 @@
"--reporter", "out/test/int/loggingReporter.js",
"--timeout", "1800000"
],
"sourceMaps": true,
"outFiles": ["${workspaceRoot}/out/**/*.js"]
},
{
@ -41,7 +40,6 @@
"args": [
"--extensionDevelopmentPath=${workspaceRoot}"
],
"sourceMaps": true,
"outFiles": [ "${workspaceRoot}/out/**/*.js" ]
}
]

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

@ -1,3 +1,11 @@
## 2.7.1
* Support source mapping of stack traces in the Debug Console - thanks to [nojvek](https://github.com/nojvek) for the PR! - [Microsoft/vscode-chrome-debug-core#190](https://github.com/Microsoft/vscode-chrome-debug-core/issues/190)
* Show error callstack in new Exception widget when pausing on an exception (sourcemapped, thanks to the above)
* Fix BPs sometimes removed when editing while debugging - [Microsoft/vscode#22492](https://github.com/microsoft/vscode/issues/22492)
* Fix some errors when stepping quickly - [Microsoft/vscode#22855](https://github.com/microsoft/vscode/issues/22855)
* Show "Chrome" instead of "Thread 1" as thread name when debugging multiple things at once
* Fix crash when debugging with async callstacks and sourcemaps disabled
## 2.7.0
* Implement `disableNetworkCache` option - [#358](https://github.com/Microsoft/vscode-chrome-debug/issues/358)
* If you are using VS Code 1.11, set the undocumented property `showAyncStacks` to see async callstacks.

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

@ -1,7 +1,7 @@
{
"name": "debugger-for-chrome",
"displayName": "Debugger for Chrome",
"version": "2.7.0",
"version": "2.7.1",
"icon": "images/icon.png",
"description": "Debug your JavaScript code in the Chrome browser, or any other target that supports the Chrome Debugger protocol.",
"author": {
@ -22,7 +22,7 @@
"license": "SEE LICENSE IN LICENSE.txt",
"dependencies": {
"vscode": "^1.0.3",
"vscode-chrome-debug-core": "3.14.7",
"vscode-chrome-debug-core": "3.14.10",
"vscode-debugadapter": "^1.18.0-pre.4",
"vscode-debugprotocol": "^1.18.0-pre.2"
},