changelog
This commit is contained in:
Родитель
09b21a37c2
Коммит
f26b02d271
|
@ -1,3 +1,8 @@
|
|||
## 4.2.2
|
||||
* Fix another breakpoints case related to [Microsoft/vscode#45657](https://github.com/Microsoft/vscode/issues/45657)
|
||||
* Fix NPE when toggling skip on files that are only in the stack after a label or async frame
|
||||
* Fix "start without debugging" navigation - [Microsoft/vscode-chrome-debug#620](https://github.com/Microsoft/vscode-chrome-debug/issues/620)
|
||||
|
||||
## 4.2.1
|
||||
* Fix Windows issue with breakpoints not binding if they were set before launch - [Microsoft/vscode#45657](https://github.com/Microsoft/vscode/issues/45657)
|
||||
* Work around issue where hover shows wrong 'this' - [Microsoft/vscode#44785](https://github.com/Microsoft/vscode/issues/44785)
|
||||
|
|
|
@ -6301,9 +6301,9 @@
|
|||
}
|
||||
},
|
||||
"vscode-chrome-debug-core": {
|
||||
"version": "3.23.11",
|
||||
"resolved": "https://registry.npmjs.org/vscode-chrome-debug-core/-/vscode-chrome-debug-core-3.23.11.tgz",
|
||||
"integrity": "sha512-jZ+pF5bnPl3t2BBSuhAvvXkIdT+/yqmgV4F4aOZ6mGj3v7q33j+hpdw4/ZXipZbMx/pQ9pMiw86A8V70h0QbUg==",
|
||||
"version": "4.0.2",
|
||||
"resolved": "https://registry.npmjs.org/vscode-chrome-debug-core/-/vscode-chrome-debug-core-4.0.2.tgz",
|
||||
"integrity": "sha512-7UTSUEeOZGqEHH/AMg556s35hDQFGnBMJw19BbcsQ/I9TSf3QzIPTtHXWo41A8DpDARim59ZtzAhs9QkNWKxKA==",
|
||||
"requires": {
|
||||
"@types/source-map": "https://registry.npmjs.org/@types/source-map/-/source-map-0.1.29.tgz",
|
||||
"glob": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz",
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
],
|
||||
"license": "SEE LICENSE IN LICENSE.txt",
|
||||
"dependencies": {
|
||||
"vscode-chrome-debug-core": "^3.23.11",
|
||||
"vscode-chrome-debug-core": "^4.0.2",
|
||||
"vscode-debugadapter": "^1.28.0-pre.2",
|
||||
"vscode-nls": "^3.2.1"
|
||||
},
|
||||
|
@ -72,7 +72,10 @@
|
|||
"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": "gulp tslint",
|
||||
"vscode:prepublish": "gulp verify-no-linked-modules",
|
||||
"postinstall": "node ./node_modules/vscode/bin/install"
|
||||
"postinstall": "node ./node_modules/vscode/bin/install",
|
||||
"patch": "npm version patch -m '%s'",
|
||||
"minor": "npm version minor -m '%s'",
|
||||
"major": "npm version major -m '%s'"
|
||||
},
|
||||
"contributes": {
|
||||
"breakpoints": [
|
||||
|
|
Загрузка…
Ссылка в новой задаче