1
0
Fork 0
website/.vscode/tasks.json

19 lines
462 B
JSON
Raw Normal View History

2021-05-11 17:32:00 -05:00
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "publish",
"type": "shell",
"command": "boot publish",
"problemMatcher": []
2022-01-01 02:50:09 -06:00
},
{
"label": "dev",
"type": "shell",
"command": "boot dev",
"problemMatcher": []
2021-05-11 17:32:00 -05:00
}
]
}