feature: First working version

This commit is contained in:
Keith Solomon
2025-06-22 10:51:16 -05:00
parent be8a2649f8
commit 21a7e972f2
6 changed files with 200 additions and 21 deletions

View File

@@ -9,7 +9,11 @@
"categories": [
"Other"
],
"activationEvents": [],
"activationEvents": [
"onStartupFinished",
"onView:roadmapChecklist",
"workspaceContains:Development Checklist.md"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
@@ -17,7 +21,25 @@
"command": "vscode-project-roadmap.helloWorld",
"title": "Hello World"
}
]
],
"viewsContainers": {
"activitybar": [
{
"id": "roadmapSidebar",
"title": "Roadmap",
"icon": "media/roadmap.svg"
}
]
},
"views": {
"roadmapSidebar": [
{
"id": "roadmapChecklist",
"name": "Checklist",
"icon": "media/roadmap.svg"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run package",