This commit is contained in:
roblou 2017-01-02 11:17:06 -08:00
Родитель 6570a015ca
Коммит 018d1954d2
3 изменённых файлов: 8 добавлений и 3 удалений

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

@ -1,3 +1,8 @@
## 2.4.2
* Enable `sourceMaps` by default. You no longer need to set `"sourceMaps": true` in your launch config, but can set it to false to disable loading sourcemaps - [#134](https://github.com/Microsoft/vscode-chrome-debug-core/issues/134)
* Fix boolean properties showing as strings - [#312](https://github.com/Microsoft/vscode-chrome-debug/issues/312)
* Fix unhandled exceptions not being logged to the console - [#130](https://github.com/Microsoft/vscode-chrome-debug-core/issues/130)
## 2.4.1
* Fix hover not working when using sourcemaps, and scripts are not on disk - [#309](https://github.com/Microsoft/vscode-chrome-debug/issues/309)

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

@ -1,7 +1,7 @@
{
"name": "debugger-for-chrome",
"displayName": "Debugger for Chrome",
"version": "2.4.1",
"version": "2.4.2",
"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.8.2",
"vscode-chrome-debug-core": "3.8.3",
"vscode-debugadapter": "^1.15.0",
"vscode-debugprotocol": "^1.15.0"
},

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

@ -83,7 +83,7 @@ export class ChromeDebugAdapter extends CoreDebugAdapter {
return super.attach(args);
}
protected commonArgs(args: ICommonRequestArgs): void {
public commonArgs(args: ICommonRequestArgs): void {
args.sourceMaps = typeof args.sourceMaps === 'undefined' || args.sourceMaps;
args.sourceMapPathOverrides = getSourceMapPathOverrides(args.webRoot, args.sourceMapPathOverrides);
args.skipFileRegExps = ['^chrome-extension:.*'];