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

Commit 58b0a9f

Browse files
committed
3.2.1
1 parent 186caa5 commit 58b0a9f

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 3.2.1
2+
* Fix pause overlay on Chrome window - [#486](https://github.com/Microsoft/vscode-chrome-debug/issues/486)
3+
14
## 3.2.0
25
* Support 'Command Line API' in the console - commands like `$_` and `$(selector)` will now work.
36
* Wait for sourcemaps to finish loading before resolving sourcemaps in stack traces.

package.json

Lines changed: 3 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.2.0",
4+
"version": "3.2.1",
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.17.0",
24+
"vscode-chrome-debug-core": "3.17.1",
2525
"vscode-debugadapter": "^1.22.0"
2626
},
2727
"devDependencies": {
@@ -62,6 +62,7 @@
6262
"watch:debugadapter": "webpack -w",
6363
"watch:test": "tsc -p test/tsconfig.json -w",
6464
"watch:outOfBundle": "tsc -p outOfBundle/tsconfig.json -w",
65+
"start": "node out/bundle.js --server=4712",
6566
"test": "mocha --timeout 20000 -s 2000 -u tdd --colors \"./out/test/*.test.js\"",
6667
"intTest": "mocha --timeout 20000 -s 3500 -u tdd --colors --reporter node_modules/vscode-chrome-debug-core-testsupport/out/loggingReporter.js ./out/test/int/*.test.js",
6768
"lint": "tslint -t verbose \"src/**/*.ts\"",

0 commit comments

Comments
 (0)