Implemented privacy guides tasks

This commit is contained in:
Sun Knudsen 2022-02-10 16:21:06 -05:00
parent 3020080acd
commit 35ea7a7b16
No known key found for this signature in database
GPG key ID: 02C43AD072D57783
7 changed files with 6865 additions and 0 deletions

40
.vscode/tasks.json vendored Normal file
View file

@ -0,0 +1,40 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "Insert YouTube player",
"command": "node ./tasks/insert-youtube-player.js \"${file}\" \"${lineNumber}\" \"${input:youtubeWatchUrl}\"",
"presentation": {
"reveal": "silent"
},
"problemMatcher": []
},
{
"type": "shell",
"label": "Update YouTube players",
"command": "node ./tasks/update-youtube-players.js",
"presentation": {
"reveal": "always"
},
"problemMatcher": []
},
{
"type": "shell",
"label": "Organize steps",
"command": "node ./tasks/organize-steps.js \"${file}\"",
"presentation": {
"reveal": "silent"
},
"problemMatcher": []
}
],
"inputs": [
{
"id": "youtubeWatchUrl",
"description": "YouTube watch URL",
"default": "",
"type": "promptString"
}
]
}