Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
"configurations": [
{
"name": "Debug Jekyll",
"type": "pwa-chrome",
"type": "chrome",
"request": "launch",
"url": "http://127.0.0.1:4000",
"webRoot": "${workspaceFolder}",
"preLaunchTask": "Run Jekyll"
"preLaunchTask": "Serve"
}
]
}
19 changes: 16 additions & 3 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,24 @@
"version": "2.0.0",
"tasks": [
{
"label": "Run Jekyll",
"label": "Serve",
"type": "shell",
"command": "mise exec -- bundle exec jekyll serve",
"command": "mise exec -- bundle exec jekyll serve --livereload --verbose",
"group": {
"kind": "test",
"isDefault": true
},
"detail": "Run Jekyll in verbose debug mode with livereload",
"isBackground": true,
"problemMatcher": []
"problemMatcher": ["$jekyll-error-watch", "$jekyll-warning-watch"]
},
{
"label": "Build",
"type": "shell",
"command": "mise exec -- bundle exec jekyll build --verbose",
"group": "build",
"detail": "Build Jekyll site with verbose debug output",
"problemMatcher": ["$jekyll-error", "$jekyll-warning"]
}
]
}