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

Commit

Permalink
Bump -core, enable smartStep by default (microsoft/vscode#62965)
Browse files Browse the repository at this point in the history
  • Loading branch information
roblourens committed Nov 15, 2018
1 parent dd2677b commit f51e120
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"license": "MIT",
"private": true,
"dependencies": {
"vscode-chrome-debug-core": "^6.7.33",
"vscode-chrome-debug-core": "^6.7.34",
"vscode-debugadapter": "^1.33.0-pre.2",
"vscode-nls": "^3.2.5"
},
Expand Down
3 changes: 2 additions & 1 deletion src/nodeDebugAdapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,8 @@ export class NodeDebugAdapter extends ChromeDebugAdapter {
protected commonArgs(args: ICommonRequestArgs): void {
args.sourceMapPathOverrides = getSourceMapPathOverrides(args.cwd, args.sourceMapPathOverrides);
fixNodeInternalsSkipFiles(args);
args.showAsyncStacks = typeof args.showAsyncStacks === 'undefined' || args.showAsyncStacks;

args.smartStep = typeof args.smartStep === 'undefined' ? !this._isVSClient : args.smartStep;

this._restartMode = args.restart;
super.commonArgs(args);
Expand Down

0 comments on commit f51e120

Please sign in to comment.