Skip to content

Commit 81149de

Browse files
committed
Update Extension builds
1 parent e9c76f8 commit 81149de

File tree

4 files changed

+155
-10
lines changed

4 files changed

+155
-10
lines changed

.vscode/launch.json

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
// A launch configuration that compiles the extension and then opens it inside a new window
2-
// Use IntelliSense to learn about possible attributes.
3-
// Hover to view descriptions of existing attributes.
4-
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
51
{
62
"version": "0.2.0",
73
"configurations": [
@@ -13,7 +9,7 @@
139
"--extensionDevelopmentPath=${workspaceFolder}"
1410
],
1511
"outFiles": [
16-
"${workspaceFolder}/dist/**/*.js"
12+
"${workspaceFolder}/out/**/*.js"
1713
],
1814
"preLaunchTask": "${defaultBuildTask}"
1915
},
@@ -26,10 +22,9 @@
2622
"--extensionTestsPath=${workspaceFolder}/out/test/suite/index"
2723
],
2824
"outFiles": [
29-
"${workspaceFolder}/out/**/*.js",
30-
"${workspaceFolder}/dist/**/*.js"
25+
"${workspaceFolder}/out/test/**/*.js"
3126
],
32-
"preLaunchTask": "tasks: watch-tests"
27+
"preLaunchTask": "${defaultBuildTask}"
3328
}
3429
]
35-
}
30+
}

.vscode/tasks.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"type": "npm",
88
"script": "watch",
99
"problemMatcher": "$tsc-watch",
10-
"isBackground": true,
10+
"isBackground": false,
1111
"presentation": {
1212
"reveal": "never"
1313
},

package-lock.json

Lines changed: 149 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -324,6 +324,7 @@
324324
"jest-junit": "^16.0.0",
325325
"jest-mock-vscode": "^2.1.0",
326326
"node-fetch": "^2.6.7",
327+
"npm-run-all2": "^8.0.4",
327328
"tar": "^7.4.3",
328329
"ts-jest": "^29.1.1",
329330
"ts-loader": "^9.4.1",

0 commit comments

Comments
 (0)