Skip to content

Commit a32bb98

Browse files
committed
Reworks build, tasks, and launch configs
Updates dependencies
1 parent 80ca880 commit a32bb98

File tree

4 files changed

+581
-734
lines changed

4 files changed

+581
-734
lines changed

.vscode/launch.json

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,25 @@
33
"version": "0.2.0",
44
"configurations": [
55
{
6-
"name": "Launch Extension",
6+
"name": "Launch GitLens",
7+
"type": "extensionHost",
8+
"request": "launch",
9+
"runtimeExecutable": "${execPath}",
10+
"args": ["--extensionDevelopmentPath=${workspaceRoot}" ],
11+
"stopOnEntry": false,
12+
"sourceMaps": true,
13+
"outFiles": ["${workspaceRoot}/out/src/**/*.js"]
14+
},
15+
{
16+
"name": "Build & Launch GitLens",
717
"type": "extensionHost",
818
"request": "launch",
919
"runtimeExecutable": "${execPath}",
1020
"args": ["--extensionDevelopmentPath=${workspaceRoot}" ],
1121
"stopOnEntry": false,
1222
"sourceMaps": true,
1323
"outFiles": ["${workspaceRoot}/out/src/**/*.js"],
14-
"preLaunchTask": "compile"
24+
"preLaunchTask": "build"
1525
},
1626
{
1727
"name": "Launch Tests",
@@ -22,7 +32,7 @@
2232
"stopOnEntry": false,
2333
"sourceMaps": true,
2434
"outFiles": ["${workspaceRoot}/out/test/**/*.js"],
25-
"preLaunchTask": "compile"
35+
"preLaunchTask": "build"
2636
}
2737
]
2838
}

.vscode/tasks.json

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
},
1818
"tasks": [
1919
{
20-
"label": "compile",
20+
"label": "build",
2121
"type": "npm",
22-
"script": "compile",
22+
"script": "build",
2323
"problemMatcher": [
2424
"$tsc",
2525
"$tslint5"
@@ -38,6 +38,16 @@
3838
],
3939
"group": "build"
4040
},
41+
{
42+
"label": "rebuild",
43+
"type": "npm",
44+
"script": "rebuild",
45+
"problemMatcher": [
46+
"$tsc",
47+
"$tslint5"
48+
],
49+
"group": "build"
50+
},
4151
{
4252
"type": "npm",
4353
"script": "watch",

0 commit comments

Comments
 (0)