Skip to content

Commit 95abb73

Browse files
committed
setup debug script to run --apply/--rebase w/ built gsr for vscode
Signed-off-by: Kipras Melnikovas <kipras@kipras.org>
1 parent 0b260a0 commit 95abb73

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.vscode/launch.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,31 @@
44
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
55
"version": "0.2.0",
66
"configurations": [
7+
{
8+
"name": "node dist/git-stacked-rebase.js origin/master",
9+
"program": "${workspaceFolder}/dist/git-stacked-rebase.js",
10+
"request": "launch",
11+
"args": [
12+
"origin/master" //
13+
],
14+
"skipFiles": [
15+
"<node_internals>/**" //
16+
],
17+
"type": "node"
18+
},
19+
{
20+
"name": "node dist/git-stacked-rebase.js origin/master --apply",
21+
"program": "${workspaceFolder}/dist/git-stacked-rebase.js",
22+
"request": "launch",
23+
"args": [
24+
"origin/master", //
25+
"--apply"
26+
],
27+
"skipFiles": [
28+
"<node_internals>/**" //
29+
],
30+
"type": "node"
31+
},
732
{
833
"name": "ts-node tests",
934
"type": "node",

0 commit comments

Comments
 (0)