3.2.1
This commit is contained in:
Родитель
186caa5a3b
Коммит
58b0a9f613
|
@ -1,3 +1,6 @@
|
|||
## 3.2.1
|
||||
* Fix pause overlay on Chrome window - [#486](https://github.com/Microsoft/vscode-chrome-debug/issues/486)
|
||||
|
||||
## 3.2.0
|
||||
* Support 'Command Line API' in the console - commands like `$_` and `$(selector)` will now work.
|
||||
* Wait for sourcemaps to finish loading before resolving sourcemaps in stack traces.
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "debugger-for-chrome",
|
||||
"displayName": "Debugger for Chrome",
|
||||
"version": "3.2.0",
|
||||
"version": "3.2.1",
|
||||
"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.17.0",
|
||||
"vscode-chrome-debug-core": "3.17.1",
|
||||
"vscode-debugadapter": "^1.22.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
@ -62,6 +62,7 @@
|
|||
"watch:debugadapter": "webpack -w",
|
||||
"watch:test": "tsc -p test/tsconfig.json -w",
|
||||
"watch:outOfBundle": "tsc -p outOfBundle/tsconfig.json -w",
|
||||
"start": "node out/bundle.js --server=4712",
|
||||
"test": "mocha --timeout 20000 -s 2000 -u tdd --colors \"./out/test/*.test.js\"",
|
||||
"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",
|
||||
"lint": "tslint -t verbose \"src/**/*.ts\"",
|
||||
|
|
Загрузка…
Ссылка в новой задаче