comprofix.com/.vscode/tasks.json
Matthew McKinnon fb134b0f72
All checks were successful
/ build-jeykll (push) Successful in 1m48s
/ build-docker (push) Successful in 34s
/ publish (push) Successful in 56s
chore: upgrade 7.2.0
2024-11-28 21:53:07 +10:00

27 lines
555 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Run Jekyll Server",
"type": "shell",
"command": "./tools/run.sh",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": [],
"detail": "Runs the Jekyll server with live reload."
},
{
"label": "Build Jekyll Site",
"type": "shell",
"command": "./tools/test.sh",
"group": {
"kind": "build"
},
"problemMatcher": [],
"detail": "Build the Jekyll site for production."
}
]
}