This commit is contained in:
Rob Lourens 2017-04-06 09:45:55 -07:00
Родитель 2375944421
Коммит 919a6922b1
3 изменённых файлов: 12 добавлений и 3 удалений

3
.vscode/launch.json поставляемый
Просмотреть файл

@ -8,6 +8,9 @@
"protocol": "inspector",
"request": "launch",
"cwd": "${workspaceRoot}",
"runtimeArgs": [
"--preserve-symlinks"
],
"program": "${workspaceRoot}/out/bundle.js",
// "runtimeExecutable": "/Users/roblou/.nvm/versions/node/v6.5.0/bin/node",
"stopOnEntry": false,

Просмотреть файл

@ -1,3 +1,9 @@
## 2.7.3
* Fix missing variables and error "Cannot read property 'length' of undefined" - [Microsoft/vscode-chrome-debug-core#195](https://github.com/Microsoft/vscode-chrome-debug-core/issues/195)
* Fix sourcemapping issue when throwing non-Error
* Fix exception messages in the console missing a trailing newline
* Exception sourcemapping should also map non-sourcemapped scripts to file on disk
## 2.7.2
* Fix "pathMapping key must end in '/'" - thanks to [@mlewand](https://github.com/mlewand) for the PR! - [#393](https://github.com/Microsoft/vscode-chrome-debug/issues/393)
* Add "Toggle skipping this file" context menu option to callstack - [Microsoft/vscode-chrome-debug-core#172](https://github.com/Microsoft/vscode-chrome-debug-core/issues/172)

Просмотреть файл

@ -1,7 +1,7 @@
{
"name": "debugger-for-chrome",
"displayName": "Debugger for Chrome",
"version": "2.7.2",
"version": "2.7.3",
"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,8 +21,8 @@
],
"license": "SEE LICENSE IN LICENSE.txt",
"dependencies": {
"vscode-chrome-debug-core": "3.14.13",
"vscode-debugadapter": "^1.18.0-pre.5"
"vscode-chrome-debug-core": "3.14.14",
"vscode-debugadapter": "1.18.0-pre.5"
},
"devDependencies": {
"@types/mocha": "^2.2.35",