Skip to content
This repository was archived by the owner on Jun 8, 2023. It is now read-only.

Commit 2016918

Browse files
authored
Merge pull request #85 from kasecato/update/dependencies
Update LSP client dependencies
2 parents b8632f0 + 222b177 commit 2016918

11 files changed

+3256
-252
lines changed

scala/.vscode/launch.json

+3-14
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// A launch configuration that compiles the extension and then opens it inside a new window
22
{
3-
"version": "0.1.0",
3+
"version": "0.2.0",
44
"configurations": [
55
{
66
"name": "Launch Extension",
@@ -10,19 +10,8 @@
1010
"args": ["--extensionDevelopmentPath=${workspaceRoot}" ],
1111
"stopOnEntry": false,
1212
"sourceMaps": true,
13-
"outDir": "${workspaceRoot}/out/src",
14-
"preLaunchTask": "build"
15-
},
16-
{
17-
"name": "Launch Tests",
18-
"type": "extensionHost",
19-
"request": "launch",
20-
"runtimeExecutable": "${execPath}",
21-
"args": ["--extensionDevelopmentPath=${workspaceRoot}", "--extensionTestsPath=${workspaceRoot}/out/test" ],
22-
"stopOnEntry": false,
23-
"sourceMaps": true,
24-
"outDir": "${workspaceRoot}/out/test",
25-
"preLaunchTask": "build"
13+
"outFiles": ["${workspaceRoot}/out/src"],
14+
"preLaunchTask": "compile"
2615
}
2716
]
2817
}

scala/.vscode/tasks.json

+12-22
Original file line numberDiff line numberDiff line change
@@ -8,30 +8,20 @@
88

99
// A task runner that calls a custom npm script that compiles the extension.
1010
{
11-
"version": "0.1.0",
12-
13-
// we want to run npm
14-
"command": "npm",
15-
16-
// the command is a shell script
17-
"isShellCommand": true,
18-
19-
// show the output window only if unrecognized errors occur.
20-
"showOutput": "always",
21-
11+
"version": "2.0.0",
2212
"tasks": [
2313
{
24-
"taskName": "build",
25-
"suppressTaskName": true,
26-
27-
// we run the custom script "compile" as defined in package.json
28-
"args": ["run", "compile", "--loglevel", "always"],
29-
30-
// The tsc compiler is started in watching mode
31-
"isWatching": true,
32-
33-
// use the standard tsc in watch mode problem matcher to find compile problems in the output.
34-
"problemMatcher": "$tsc-watch"
14+
"type": "npm",
15+
"identifier": "compile",
16+
"script": "compile",
17+
"group": {
18+
"kind": "build",
19+
"isDefault": true
20+
},
21+
"problemMatcher": [
22+
"$tslint5",
23+
"$tsc"
24+
]
3525
}
3626
]
3727
}

0 commit comments

Comments
 (0)