Skip to content
This repository was archived by the owner on Dec 6, 2022. It is now read-only.

Commit a17956a

Browse files
committed
3.1.6
1 parent 54ff7b3 commit a17956a

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 3.1.6
2+
* Support `console.dir` and other missing `console` APIs - [Microsoft/vscode#29602](https://github.com/Microsoft/vscode/issues/29602)
3+
* Resolve longer `pathMapping` mappings before resolving shorter ones - [#444](https://github.com/microsoft/vscode-chrome-debug/issues/444)
4+
15
## 3.1.5
26
* Fix evaluating object literals in the console - [Microsoft/vscode-node-debug2#104](https://github.com/Microsoft/vscode-node-debug2/issues/104)
37
* 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)

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "debugger-for-chrome",
33
"displayName": "Debugger for Chrome",
4-
"version": "3.1.5",
4+
"version": "3.1.6",
55
"icon": "images/icon.png",
66
"description": "Debug your JavaScript code in the Chrome browser, or any other target that supports the Chrome Debugger protocol.",
77
"author": {
@@ -21,7 +21,7 @@
2121
],
2222
"license": "SEE LICENSE IN LICENSE.txt",
2323
"dependencies": {
24-
"vscode-chrome-debug-core": "3.15.8",
24+
"vscode-chrome-debug-core": "3.15.9",
2525
"vscode-debugadapter": "1.19.0"
2626
},
2727
"devDependencies": {

testapp/.vscode/launch.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,14 @@
88
"request": "launch",
99
"url": "http://localhost:8080/index.html",
1010
"port": 9223,
11-
"webRoot": "${workspaceRoot}/wwwroot",
11+
"pathMapping": {
12+
"/": "${workspaceRoot}/wwwroot",
13+
"/out": "${workspaceRoot}/wwwroot/out"
14+
},
15+
// "webRoot": "${workspaceRoot}/wwwroot",
1216
"showAsyncStacks": true,
13-
"disableNetworkCache": true
17+
"disableNetworkCache": true,
18+
"trace": true
1419
},
1520
{
1621
"debugServer": 4712,

0 commit comments

Comments
 (0)