Skip to content

Commit 3bd2d17

Browse files
committed
Improve VSCode tasks
Merge in ADGUARD-FILTERS/vscode-adblock-syntax from fix-vscode-tasks to master Squashed commit of the following: commit 07c9320 Author: scripthunter7 <d.tota@adguard.com> Date: Tue Jan 23 11:47:31 2024 +0100 Open AGLint test project after starting dev mode commit 76ff495 Author: scripthunter7 <d.tota@adguard.com> Date: Tue Jan 23 11:47:04 2024 +0100 Add task for AGTree
1 parent 0fc00ad commit 3bd2d17

2 files changed

Lines changed: 20 additions & 1 deletion

File tree

.vscode/launch.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@
88
"name": "Launch Client",
99
"runtimeExecutable": "${execPath}",
1010
"args": [
11-
"--extensionDevelopmentPath=${workspaceRoot}"
11+
"--extensionDevelopmentPath=${workspaceRoot}",
12+
// Open AGLint test project
13+
"${workspaceRoot}/test/static/aglint"
1214
],
1315
"outFiles": [
1416
"${workspaceRoot}/client/out/**/*.js"

.vscode/tasks.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,22 @@
1717
},
1818
"problemMatcher": "$esbuild-watch",
1919
},
20+
{
21+
"label": "Integrated AGTree dev build (watch)",
22+
"type": "npm",
23+
"script": "watch:agtree",
24+
"isBackground": true,
25+
"group": {
26+
"kind": "build",
27+
"isDefault": true
28+
},
29+
"presentation": {
30+
"panel": "dedicated",
31+
"reveal": "never",
32+
"close": true
33+
},
34+
"problemMatcher": "$esbuild-watch",
35+
},
2036
{
2137
"label": "Integrated AGLint dev build (watch)",
2238
"type": "npm",
@@ -94,6 +110,7 @@
94110
"dependsOn": [
95111
"Grammar dev build (watch)",
96112
"Server dev build (watch)",
113+
"Integrated AGTree dev build (watch)",
97114
"Integrated AGLint dev build (watch)",
98115
"Client dev build (watch)"
99116
],

0 commit comments

Comments
 (0)