add views

Signed-off-by: Sanjula Ganepola <sanjulagane@gmail.com>
This commit is contained in:
Sanjula Ganepola
2024-09-24 23:47:26 -04:00
parent 931236318f
commit 0d5ab6ae00

View File

@@ -29,13 +29,38 @@
"activationEvents": [], "activationEvents": [],
"main": "./dist/extension.js", "main": "./dist/extension.js",
"contributes": { "contributes": {
"commands": [ "viewsContainers": {
"activitybar": [
{ {
"command": "github-local-actions.helloWorld", "id": "github-local-actions-container",
"title": "Hello World" "title": "GitHub Local Actions",
"icon": "$(robot)"
} }
] ]
}, },
"views": {
"github-local-actions-container": [
{
"id": "status",
"name": "Status"
},
{
"id": "workflows",
"name": "Workflows"
},
{
"id": "events",
"name": "Events"
},
{
"id": "settings",
"name": "Settings"
}
]
},
"commands": [
]
},
"scripts": { "scripts": {
"vscode:prepublish": "npm run package", "vscode:prepublish": "npm run package",
"compile": "webpack", "compile": "webpack",