prez-concepts-chill/.vscode/tasks.json
Julien Fastré 6cac46431e
Some checks failed
Build an image to deploy website / build (push) Failing after 2m30s
checkout image in ci using lfs
2024-11-18 09:46:05 +01:00

29 lines
829 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Build formation signature",
"type": "shell",
"command": "pandoc",
"args": [
"--from",
"markdown+emoji",
"--to",
"revealjs",
"--standalone",
"--resource-path",
"./presentation/src/",
"-o",
"presentation/src/formation-signature.html",
"presentation/src/formation-signature.md"
],
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}