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

Commit

Permalink
3.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
roblourens committed Jun 28, 2017
1 parent 54ff7b3 commit a17956a
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand All @@ -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": {
Expand Down
9 changes: 7 additions & 2 deletions testapp/.vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit a17956a

Please sign in to comment.