Skip to content

Commit

Permalink
VSCode tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
lmullen committed Jan 29, 2021
1 parent 6a839e7 commit 80bd2b2
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Serve development version locally",
"type": "shell",
"command": "make preview",
"isBackground": true,
"options": {
"cwd": "./website"
},
"presentation": {
"echo": true,
"reveal": "silent",
"focus": false,
"panel": "dedicated",
"showReuseMessage": true,
"clear": true
},
"problemMatcher": []
},
{
"label": "Deploy development version",
"type": "shell",
"command": "make deploy",
"presentation": {
"echo": true,
"reveal": "always",
"focus": true,
"panel": "dedicated",
"showReuseMessage": true,
"clear": true
},
"group": {
"kind": "build",
"isDefault": true
},
"options": {
"cwd": "./website"
},
"problemMatcher": []
}
]
}

0 comments on commit 80bd2b2

Please sign in to comment.