Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
53920c0
Initial bulk of the work to refactor/rewrite the crdp debug adapters …
Jan 10, 2019
7b2c43d
Loaded Scripts should show the runtime source, not the dev source on …
roblourens Jan 9, 2019
2d478a8
Disable logger
Jan 10, 2019
ab9c62a
Fix .scripts command
roblourens Jan 11, 2019
6b49077
Refactor the target/CDTP model
Jan 9, 2019
1176ca8
Merge pull request #3 from digeff/v2_7
digeff Jan 11, 2019
7d5b991
Merge branch 'v2_latest' into dotScripts
digeff Jan 11, 2019
726d4b5
Merge pull request #2 from roblourens/dotScripts
digeff Jan 11, 2019
ca7e80b
Finish resolving merge conflicts
Jan 11, 2019
3fce976
Merge pull request #4 from digeff/v2_7
digeff Jan 11, 2019
ffad897
Fix remove breakpoint
Jan 14, 2019
7f97c12
Fix remove breakpoint
Jan 14, 2019
155746f
Merge remote-tracking branch 'origin/v2' into v2_latest
Jan 15, 2019
3ef980e
Clean-up the stack traces model
Jan 15, 2019
34f8911
Applied Stack Traces model feedback
Jan 17, 2019
380fe8e
Merge remote-tracking branch 'origin/v2' into v2_7
Jan 18, 2019
aa61fbc
Merge fixes
Jan 18, 2019
36bd267
Add copyright
Jan 18, 2019
a3aa8d4
Added I prefix to all interfaces
Jan 18, 2019
e3442d6
Fix multiline /** comments
Jan 18, 2019
f0c3a96
Fix import casing
roblourens Jan 18, 2019
3af7021
Merge pull request #5 from roblourens/importCasing
digeff Jan 18, 2019
67ab030
Reorganize BPs files
Jan 18, 2019
9ed8545
Clean up breakpoint model
Jan 22, 2019
fd98a89
Fix skipFiles/toggle skip files
roblourens Jan 21, 2019
77ea3e0
Use sourcesMapper for skipFiles
roblourens Jan 26, 2019
fbe03f5
Merge pull request #6 from roblourens/skipFiles
digeff Jan 28, 2019
2454c18
Merge remote-tracking branch 'origin/v2' into v2_7
Jan 28, 2019
2b4a216
Finish merge
Jan 28, 2019
e6991d0
Fix smartstep, toggle smart step
roblourens Jan 21, 2019
1f0d03f
Use mappedSources for smartStep
roblourens Jan 26, 2019
6c69834
Use new API instead of sourceMapTransformer
roblourens Feb 3, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 35 additions & 3 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"cwd": "${workspaceFolder}/../vscode-node-debug2",
"program": "${workspaceFolder}/../vscode-node-debug2/out/src/nodeDebug.js",
"args": [ "--server=4712" ],
"outFiles": ["${workspaceFolder}/out/**/*.js"],
"outFiles": ["${workspaceFolder}/out/**/*.js", "${workspaceFolder}/../vscode-node-debug2/out/**/*.js"],
"internalConsoleOptions": "openOnSessionStart",
"smartStep": true,
"skipFiles": [
Expand All @@ -60,9 +60,41 @@

// These paths are only valid for my particular setup! You need to replace them with your own.
"cwd": "${workspaceFolder}/../vscode-chrome-debug",
"program": "${workspaceFolder}/../vscode-chrome-debug/out/src/chromeDebug.js",
"program": "${workspaceFolder}/../vscode-chrome-debug/out/chromeDebug.js",
"args": [ "--server=4712" ],
"outFiles": ["${workspaceFolder}/out/**/*.js"],
"outFiles": ["${workspaceFolder}/out/**/*.js", "${workspaceFolder}/../vscode-chrome-debug/out/**/*.js"],
"internalConsoleOptions": "openOnSessionStart",
"smartStep": true,
"env": {
"BREAK_WHILE_DEBUGGING": "true"
}
},
{
"name": "launch chrome-debug (No sourcemaps)",
"type": "node",
"request": "launch",
"protocol": "inspector",

// These paths are only valid for my particular setup! You need to replace them with your own.
"cwd": "${workspaceFolder}/../vscode-chrome-debug",
"program": "${workspaceFolder}/../vscode-chrome-debug/out/chromeDebug.js",
"args": [ "--server=4712" ],
"outFiles": ["${workspaceFolder}/out/**/*.js", "${workspaceFolder}/../vscode-chrome-debug/out/**/*.js"],
"internalConsoleOptions": "openOnSessionStart",
"smartStep": true,
"sourceMaps": false
},
{
"name": "launch test-debug",
"type": "node",
"request": "launch",
"protocol": "inspector",

// These paths are only valid for my particular setup! You need to replace them with your own.
"cwd": "${workspaceFolder}",
"program": "${workspaceFolder}/out/test/testDebug/testDebug.js",
"args": [ "--server=4712" ],
"outFiles": ["${workspaceFolder}/out/**/*.js", "${workspaceFolder}/../vscode-chrome-debug/out/**/*.js"],
"internalConsoleOptions": "openOnSessionStart",
"smartStep": true
},
Expand Down
9 changes: 7 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,13 @@
"files.exclude": {
".git": true,
"bin": true,
"node_modules": false,
"ThirdPartyNotices.txt": true
"node_modules": true,
"out": true,
"lib": true,
"i18n": true,
".github": true,
".vsts": true,
"ThirdPartyNotices.txt": true,
},
"search.exclude": {
".git": true,
Expand Down
2 changes: 2 additions & 0 deletions build.cmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
@gulp _dev-build
@color
2 changes: 2 additions & 0 deletions filesWithIssues.cmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
@echo off
cls && npm run build | sed -e 's/ .*//g' | grep ^src | sed -e 's/(.*//g' | uniq | sed -e 's/src/code -g src/g'
Loading