Bump -core
This commit is contained in:
Родитель
620274b8d0
Коммит
161e78c9f6
|
@ -1,3 +1,7 @@
|
|||
## 4.11.0
|
||||
* Support %c styling in console.log - thanks to [@rdegelo](https://github.com/rdegelo) for [PR #367](https://github.com/Microsoft/vscode-chrome-debug-core/pull/367) and [PR #374](https://github.com/Microsoft/vscode-chrome-debug-core/pull/374).
|
||||
* Fixes for breakOnLoad edge cases
|
||||
|
||||
## 4.10.2
|
||||
* Only show callstack context menu on stack frames - [Microsoft/vscode#19180](https://github.com/microsoft/vscode/issues/19180)
|
||||
* Fix missing breakpoints on first line of script in Chrome 69 - [Microsoft/vscode-chrome-debug-core#352](https://github.com/microsoft/vscode-chrome-debug-core/issues/352)
|
||||
|
|
|
@ -733,6 +733,7 @@
|
|||
"version": "2.6.9",
|
||||
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
|
||||
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"ms": "2.0.0"
|
||||
}
|
||||
|
@ -4177,7 +4178,8 @@
|
|||
"ms": {
|
||||
"version": "2.0.0",
|
||||
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
|
||||
"integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
|
||||
"integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
|
||||
"dev": true
|
||||
},
|
||||
"multimatch": {
|
||||
"version": "2.1.0",
|
||||
|
@ -5223,8 +5225,7 @@
|
|||
"source-map": {
|
||||
"version": "0.6.1",
|
||||
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
|
||||
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
|
||||
"dev": true
|
||||
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
|
||||
},
|
||||
"source-map-resolve": {
|
||||
"version": "0.5.2",
|
||||
|
@ -6160,9 +6161,9 @@
|
|||
}
|
||||
},
|
||||
"vscode-chrome-debug-core": {
|
||||
"version": "6.7.28",
|
||||
"resolved": "https://registry.npmjs.org/vscode-chrome-debug-core/-/vscode-chrome-debug-core-6.7.28.tgz",
|
||||
"integrity": "sha512-WLx5foITp+9JxUpcNvHTdrNCc/OgboVuPtKd1RZjtiWz8XBFd+xyKkTLZRUUt5nSvP9Z//DIj8IaPmghSaE82w==",
|
||||
"version": "6.7.31",
|
||||
"resolved": "https://registry.npmjs.org/vscode-chrome-debug-core/-/vscode-chrome-debug-core-6.7.31.tgz",
|
||||
"integrity": "sha512-iYbUIhFBif5YJR7uCRXt6tSgcuYXh8i0XiTRJ8jER2gr+Wlj7lf3T5W9zlpqQr/B8BNyGVzxxUC52Un5ezOoIg==",
|
||||
"requires": {
|
||||
"@types/source-map": "^0.1.27",
|
||||
"color": "^3.0.0",
|
||||
|
@ -6189,11 +6190,6 @@
|
|||
"path-is-absolute": "^1.0.0"
|
||||
}
|
||||
},
|
||||
"source-map": {
|
||||
"version": "0.6.1",
|
||||
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
|
||||
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
|
||||
},
|
||||
"vscode-debugadapter": {
|
||||
"version": "1.33.0-pre.2",
|
||||
"resolved": "https://registry.npmjs.org/vscode-debugadapter/-/vscode-debugadapter-1.33.0-pre.2.tgz",
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
],
|
||||
"license": "SEE LICENSE IN LICENSE.txt",
|
||||
"dependencies": {
|
||||
"vscode-chrome-debug-core": "^6.7.28",
|
||||
"vscode-chrome-debug-core": "^6.7.31",
|
||||
"vscode-debugadapter": "^1.32.1",
|
||||
"vscode-nls": "^4.0.0"
|
||||
},
|
||||
|
|
Загрузка…
Ссылка в новой задаче