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

Commit

Permalink
2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
roblourens committed Nov 3, 2016
1 parent 56746aa commit c6af8ae
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"tasks": [
{
"taskName": "watch",
"args": ["run", "build"],
"args": ["run", "watch"],
"isBuildCommand": true,
"isWatching": true
}
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 2.2.0
* Implement the `.scripts` command in the debug console to print all the scripts loaded in Chrome, their sourcemap details, and inferred local paths, to make it easier to debug a project's debug config. See the README for more details.
* Make the "Add watch" context menu item work much more robustly.
* Fix "Console logs missing in pre-Chrome 54" [#265](https://github.com/Microsoft/vscode-chrome-debug/issues/265)
* Fix "sourceMapPathOverrides matching doesn't work when sourceRoot does not end in /" - [Microsoft/vscode-chrome-debug-core](https://github.com/microsoft/vscode-chrome-debug-core/issues/78)

## 2.1.3
* Error handling for invalid messages from Chrome, to avoid crashing - [#274](https://github.com/Microsoft/vscode-chrome-debug/issues/274)
* Fix potential issue with sourcemap path handling on Windows
Expand Down
10 changes: 6 additions & 4 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": "2.1.3",
"version": "2.2.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": {
Expand All @@ -21,7 +21,7 @@
],
"license": "SEE LICENSE IN LICENSE.txt",
"dependencies": {
"vscode-chrome-debug-core": "3.5.2",
"vscode-chrome-debug-core": "3.5.4",
"vscode-debugadapter": "^1.14.0",
"vscode-debugprotocol": "^1.14.0"
},
Expand All @@ -43,8 +43,10 @@
"webpack-fail-plugin": "^1.0.5"
},
"scripts": {
"build": "webpack -w",
"build:test": "tsc -p test/tsconfig.json -w",
"build": "webpack",
"build:test": "tsc -p test/tsconfig.json",
"watch": "webpack -w",
"watch:test": "tsc -p test/tsconfig.json -w",
"test": "mocha -u tdd -c 'out/test/**/*.test.js'",
"lint": "tslint -t verbose 'src/**/*.ts' 'test/**/*.ts'",
"vscode:prepublish": "gulp verify-no-linked-modules"
Expand Down

0 comments on commit c6af8ae

Please sign in to comment.