update development files

This commit is contained in:
Yordan Suarez
2021-08-09 23:21:54 -04:00
parent 68b063548d
commit aeb6b2d634
3 changed files with 27 additions and 50 deletions

54
.vscode/tasks.json vendored
View File

@@ -2,59 +2,27 @@
"version": "2.0.0",
"tasks": [
{
"label": "Start Home Assistant on port 8124",
"label": "Run Home Assistant on port 9123",
"type": "shell",
"command": "source .devcontainer/custom_component_helper",
"group": {
"kind": "test",
"isDefault": true,
},
"presentation": {
"reveal": "always",
"panel": "new"
},
"command": "container start",
"problemMatcher": []
},
{
"label": "Run Home Assistant configuration against /config",
"type": "shell",
"command": "container check",
"problemMatcher": []
},
{
"label": "Upgrade Home Assistant to latest dev",
"type": "shell",
"command": "source .devcontainer/custom_component_helper && UpdgradeHomeAssistantDev",
"group": {
"kind": "test",
"isDefault": true,
},
"presentation": {
"reveal": "always",
"panel": "new"
},
"command": "container install",
"problemMatcher": []
},
{
"label": "Set Home Assistant Version",
"label": "Install a specific version of Home Assistant",
"type": "shell",
"command": "source .devcontainer/custom_component_helper && SetHomeAssistantVersion",
"group": {
"kind": "test",
"isDefault": true,
},
"presentation": {
"reveal": "always",
"panel": "new"
},
"problemMatcher": []
},
{
"label": "Home Assistant Config Check",
"type": "shell",
"command": "source .devcontainer/custom_component_helper && HomeAssistantConfigCheck",
"group": {
"kind": "test",
"isDefault": true,
},
"presentation": {
"reveal": "always",
"panel": "new"
},
"command": "container set-version",
"problemMatcher": []
}
]