This commit is contained in:
Rob Lourens 2017-10-17 22:40:29 -07:00
Родитель 9e392696c8
Коммит da79069cb6
3 изменённых файлов: 13 добавлений и 5 удалений

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

@ -1,3 +1,11 @@
## 3.4.0
* Show locations for exception messages in the Debug Console
* Fix unmapped names on some stack frames, thanks to [@digeff](https://github.com/digeff) for the PR! - [Microsoft/vscode-chrome-debug-core#246](https://github.com/Microsoft/vscode-chrome-debug-core/pull/246)
* Exclude some files from the package to make it slightly smaller - thanks to [@torn4dom4n](https://github.com/torn4dom4n) for the PR! - [Microsoft/vscode-chrome-debug-core#248](https://github.com/Microsoft/vscode-chrome-debug-core/pull/248)
* Terminate properly after running in noDebug mode - [Microsoft/vscode#36235](https://github.com/microsoft/vscode/issues/36235)
* Fix skipping some promise rejections improperly - [Microsoft/vscode-chrome-debug-core#250](https://github.com/Microsoft/vscode-chrome-debug-core/issues/250)
* Add `env` and `cwd` launch config options, thanks to [@jpap](https://github.com/jpap) for the PR! - [Microsoft/vscode-chrome-debug#520](https://github.com/Microsoft/vscode-chrome-debug/pull/520)
## 3.3.1
* (In VS Code 1.17), show the source location of log statements and exceptions in the debug console - [Microsoft/vscode#34626](https://github.com/Microsoft/vscode/issues/34626)
* Fix error messages that can appear when detaching from Chrome - [Microsoft/vscode#34615](https://github.com/Microsoft/vscode/issues/34615)

6
npm-shrinkwrap.json сгенерированный
Просмотреть файл

@ -120,9 +120,9 @@
"resolved": "https://registry.npmjs.org/ultron/-/ultron-1.0.2.tgz"
},
"vscode-chrome-debug-core": {
"version": "3.17.9-patch.1",
"from": "vscode-chrome-debug-core@>=3.17.9-patch.1 <4.0.0",
"resolved": "https://registry.npmjs.org/vscode-chrome-debug-core/-/vscode-chrome-debug-core-3.17.9-patch.1.tgz"
"version": "3.18.2",
"from": "vscode-chrome-debug-core@>=3.18.2 <4.0.0",
"resolved": "https://registry.npmjs.org/vscode-chrome-debug-core/-/vscode-chrome-debug-core-3.18.2.tgz"
},
"vscode-debugadapter": {
"version": "1.24.0",

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

@ -1,7 +1,7 @@
{
"name": "debugger-for-chrome",
"displayName": "Debugger for Chrome",
"version": "3.3.1",
"version": "3.4.0",
"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.17.9-patch.1",
"vscode-chrome-debug-core": "3.18.2",
"vscode-debugadapter": "^1.24.0"
},
"devDependencies": {