2021-12-24 11:00:43 +01:00
|
|
|
{
|
|
|
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
|
|
|
// for the documentation about the tasks.json format
|
|
|
|
|
"version": "2.0.0",
|
|
|
|
|
"tasks": [
|
|
|
|
|
{
|
2022-01-11 06:09:20 +01:00
|
|
|
"label": "Serve",
|
2021-12-24 11:00:43 +01:00
|
|
|
"type": "shell",
|
|
|
|
|
"command": "bundle",
|
|
|
|
|
"args": [
|
|
|
|
|
"exec",
|
|
|
|
|
"jekyll",
|
2022-01-11 06:09:20 +01:00
|
|
|
"serve",
|
|
|
|
|
"--watch",
|
|
|
|
|
"--trace",
|
|
|
|
|
"--livereload",
|
|
|
|
|
"--future",
|
|
|
|
|
"--unpublished",
|
|
|
|
|
"--drafts"
|
2021-12-24 11:00:43 +01:00
|
|
|
],
|
2022-01-11 06:09:20 +01:00
|
|
|
"group": "none",
|
|
|
|
|
"problemMatcher": []
|
2021-12-24 11:00:43 +01:00
|
|
|
},
|
|
|
|
|
{
|
2022-01-11 06:09:20 +01:00
|
|
|
"label": "Build",
|
2021-12-24 11:00:43 +01:00
|
|
|
"type": "shell",
|
|
|
|
|
"command": "bundle",
|
|
|
|
|
"args": [
|
|
|
|
|
"exec",
|
|
|
|
|
"jekyll",
|
|
|
|
|
"build",
|
2022-01-12 05:40:07 +01:00
|
|
|
"--incremental",
|
2022-01-11 06:09:20 +01:00
|
|
|
"--destination",
|
|
|
|
|
"build"
|
2021-12-24 11:00:43 +01:00
|
|
|
],
|
2022-01-12 07:01:14 +01:00
|
|
|
"group": {
|
|
|
|
|
"kind": "build",
|
|
|
|
|
"isDefault": true
|
|
|
|
|
},
|
2022-01-11 06:09:20 +01:00
|
|
|
"problemMatcher": []
|
2021-12-24 11:00:43 +01:00
|
|
|
},
|
|
|
|
|
{
|
2022-10-28 20:57:47 +02:00
|
|
|
"label": "Publish",
|
2022-01-11 07:22:15 +01:00
|
|
|
"dependsOn": [
|
2022-01-11 14:30:02 +01:00
|
|
|
"Build"
|
2022-01-11 07:22:15 +01:00
|
|
|
],
|
2022-01-11 06:09:20 +01:00
|
|
|
"type": "process",
|
|
|
|
|
"options": {
|
2022-01-11 07:22:15 +01:00
|
|
|
"cwd": "build"
|
2022-01-11 06:09:20 +01:00
|
|
|
},
|
|
|
|
|
"command": "wsl",
|
2021-12-24 11:00:43 +01:00
|
|
|
"args": [
|
2022-01-11 06:09:20 +01:00
|
|
|
"-e",
|
|
|
|
|
"/usr/bin/rsync",
|
|
|
|
|
"-v",
|
2022-11-26 00:52:19 +01:00
|
|
|
"-h",
|
2022-01-11 06:09:20 +01:00
|
|
|
"-P",
|
|
|
|
|
"-a",
|
|
|
|
|
"--delete",
|
|
|
|
|
".",
|
2022-11-26 00:52:19 +01:00
|
|
|
"com.xaymar@web.svc.xaymar.com:/home/com.xaymar/com.xaymar.www/"
|
2021-12-24 11:00:43 +01:00
|
|
|
],
|
2022-01-12 07:01:14 +01:00
|
|
|
"group": "build",
|
2021-12-24 11:00:43 +01:00
|
|
|
"problemMatcher": []
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|