diff --git a/CHANGELOG.md b/CHANGELOG.md index 432bad5f..88f44610 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 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) + ## 3.1.5 * Fix evaluating object literals in the console - [Microsoft/vscode-node-debug2#104](https://github.com/Microsoft/vscode-node-debug2/issues/104) * Fix error callstacks in console sometimes not being sourcemapped - [Microsoft/vscode-chrome-debug-core#212](https://github.com/microsoft/vscode-chrome-debug-core/issues/212) diff --git a/package.json b/package.json index 5eeb29a0..3c07aa67 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "debugger-for-chrome", "displayName": "Debugger for Chrome", - "version": "3.1.5", + "version": "3.1.6", "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.15.8", + "vscode-chrome-debug-core": "3.15.9", "vscode-debugadapter": "1.19.0" }, "devDependencies": { diff --git a/testapp/.vscode/launch.json b/testapp/.vscode/launch.json index 34b95836..770f66fa 100644 --- a/testapp/.vscode/launch.json +++ b/testapp/.vscode/launch.json @@ -8,9 +8,14 @@ "request": "launch", "url": "http://localhost:8080/index.html", "port": 9223, - "webRoot": "${workspaceRoot}/wwwroot", + "pathMapping": { + "/": "${workspaceRoot}/wwwroot", + "/out": "${workspaceRoot}/wwwroot/out" + }, + // "webRoot": "${workspaceRoot}/wwwroot", "showAsyncStacks": true, - "disableNetworkCache": true + "disableNetworkCache": true, + "trace": true }, { "debugServer": 4712,