Files
com.xaymar.www/.vscode/tasks.json
T

137 lines
2.1 KiB
JSON
Raw Normal View History

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": [
{
2023-03-18 22:46:46 +01:00
"label": "Serve (Windows)",
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
},
{
2023-03-18 22:46:46 +01:00
"label": "Serve (WSL)",
"type": "process",
"options": {
"cwd": "build"
},
"command": "wsl",
"args": [
"-e",
"bundle",
"exec",
"jekyll",
"serve",
"--watch",
"--trace",
"--livereload",
"--future",
"--unpublished",
"--drafts"
],
"group": "none",
"problemMatcher": []
},
2023-04-04 20:51:29 +02:00
{
"label": "Clean (Windows)",
"type": "shell",
"command": "bundle",
"args": [
"exec",
"jekyll",
"clean",
"--destination",
"build"
],
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": []
},
2023-03-18 22:46:46 +01:00
{
"label": "Build (Windows)",
2023-04-04 20:51:29 +02:00
"dependsOn": [
"Clean (Windows)"
],
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
},
{
2023-03-18 22:46:46 +01:00
"label": "Build (WSL)",
2023-04-04 20:51:29 +02:00
"dependsOn": [
"Clean (Windows)"
],
2023-03-18 22:46:46 +01:00
"type": "process",
"options": {
"cwd": "build"
},
"command": "wsl",
"args": [
"-e",
"bundle",
"exec",
"jekyll",
"build",
"--incremental",
"--destination",
"build"
],
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": []
},
{
"label": "Publish (WSL+Windows)",
2022-01-11 07:22:15 +01:00
"dependsOn": [
2023-03-18 22:46:46 +01:00
"Build (Windows)"
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",
".",
2023-02-11 19:06:54 +01:00
"com.xaymar@xaymar.com:/var/www/com.xaymar/public/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": []
}
]
}