2022-04-03 22:13:54 -05:00
|
|
|
{
|
|
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
|
|
// for the documentation about the tasks.json format
|
|
|
|
"version": "2.0.0",
|
|
|
|
"tasks": [
|
2022-06-01 16:12:01 -05:00
|
|
|
{
|
|
|
|
"label": "preview site",
|
|
|
|
"type": "shell",
|
|
|
|
"command": "dendron publish dev",
|
|
|
|
"options": {
|
|
|
|
"cwd": "${workspaceFolder}/../"
|
|
|
|
},
|
|
|
|
"problemMatcher": []
|
|
|
|
},
|
2022-04-03 22:13:54 -05:00
|
|
|
{
|
|
|
|
"label": "build site",
|
|
|
|
"type": "shell",
|
|
|
|
"command": "dendron publish export",
|
|
|
|
"options": {
|
|
|
|
"cwd": "${workspaceFolder}/../"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "publish site",
|
|
|
|
"type": "shell",
|
|
|
|
"command": "rsync -av .next/out/ /var/www/recipes/",
|
|
|
|
"options": {
|
|
|
|
"cwd": "${workspaceFolder}/../"
|
|
|
|
},
|
2022-06-01 16:12:01 -05:00
|
|
|
"dependsOn": [
|
|
|
|
"build site"
|
|
|
|
],
|
2022-04-03 22:13:54 -05:00
|
|
|
"problemMatcher": []
|
2022-06-01 16:12:01 -05:00
|
|
|
}
|
2022-04-03 22:13:54 -05:00
|
|
|
]
|
|
|
|
}
|