privacy-guides/.vscode/tasks.json

68 lines
1.6 KiB
JSON
Raw Normal View History

2022-02-10 16:21:06 -05:00
{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
2022-03-14 08:53:50 -04:00
"label": "Organize steps",
2022-03-19 16:52:49 -04:00
"command": "node ./tasks/organize-steps.js '${file}'",
"presentation": {
"reveal": "silent"
},
"problemMatcher": []
},
2022-02-10 16:21:06 -05:00
{
"type": "shell",
2022-03-14 08:53:50 -04:00
"label": "Preview markdown",
2022-03-19 16:52:49 -04:00
"command": "node ./tasks/preview-markdown.js '${relativeFile}\"",
2022-02-10 16:21:06 -05:00
"presentation": {
"reveal": "silent"
},
"problemMatcher": []
},
{
"type": "shell",
2022-03-14 08:53:50 -04:00
"label": "Preview markdown (using reverse proxy)",
2022-03-19 16:52:49 -04:00
"command": "node ./tasks/preview-markdown.js '${relativeFile}' use-proxy",
2022-02-10 16:21:06 -05:00
"presentation": {
2022-03-14 08:53:50 -04:00
"reveal": "silent"
2022-02-10 16:21:06 -05:00
},
"problemMatcher": []
},
{
"type": "shell",
2022-03-14 08:53:50 -04:00
"label": "Proxify link",
2022-03-19 16:52:49 -04:00
"command": "node ./tasks/proxify-link.js '${selectedText}'",
2022-03-14 08:53:50 -04:00
"presentation": {
"reveal": "silent"
},
"problemMatcher": []
},
{
"type": "shell",
"label": "Insert YouTube player",
2022-03-19 16:52:49 -04:00
"command": "node ./tasks/insert-youtube-player.js '${file}' '${lineNumber}' '${input:youtubeWatchUrl}'",
2022-02-10 16:21:06 -05:00
"presentation": {
"reveal": "silent"
},
"problemMatcher": []
2022-03-14 08:53:50 -04:00
},
{
"type": "shell",
"label": "Update YouTube players",
"command": "node ./tasks/update-youtube-players.js",
"presentation": {
"reveal": "always"
},
"problemMatcher": []
2022-02-10 16:21:06 -05:00
}
],
"inputs": [
{
"id": "youtubeWatchUrl",
"description": "YouTube watch URL",
"default": "",
"type": "promptString"
}
]
}