Skip to content

Commit a50acd8

Browse files
committed
chore(vscode): enable verbose Jekyll debugging in tasks
- add `--verbose` to serve and build commands - include task `detail` descriptions for clearer debugging context
1 parent 2b1dfe9 commit a50acd8

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

.vscode/tasks.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,22 @@
44
{
55
"label": "Serve",
66
"type": "shell",
7-
"command": "mise exec -- bundle exec jekyll serve --livereload",
7+
"command": "mise exec -- bundle exec jekyll serve --livereload --verbose",
88
"group": {
99
"kind": "test",
1010
"isDefault": true
1111
},
12+
"detail": "Run Jekyll in verbose debug mode with livereload",
1213
"isBackground": true,
1314
"problemMatcher": ["$jekyll-error-watch", "$jekyll-warning-watch"]
1415
},
1516
{
1617
"label": "Build",
1718
"type": "shell",
18-
"command": "mise exec -- bundle exec jekyll build",
19+
"command": "mise exec -- bundle exec jekyll build --verbose",
1920
"group": "build",
20-
"problemMatcher": ["$jekyll-error", "$jekyll-warning"],
21+
"detail": "Build Jekyll site with verbose debug output",
22+
"problemMatcher": ["$jekyll-error", "$jekyll-warning"]
2123
}
2224
]
2325
}

0 commit comments

Comments
 (0)