Skip to content
This repository has been archived by the owner on Mar 28, 2023. It is now read-only.

Commit

Permalink
Fix support for vscode/github.dev
Browse files Browse the repository at this point in the history
With the addition of the "Current branch" view, the support for vscode.dev/github.dev was inadvertently broken, since I needed more information about the current branch. This mostly skips the "current branch" view for web and re-enables the basic functionality that had been available before.

This is not the right long-term fix, but to work-around the issues for now.
  • Loading branch information
cschleiden committed Aug 1, 2022
1 parent 589ac6b commit aa83486
Show file tree
Hide file tree
Showing 5 changed files with 1,981 additions and 62 deletions.
14 changes: 13 additions & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,18 @@
"outFiles": [
"${workspaceFolder}/dist/*.js"
]
}
},
{
"name": "Run Web Extension in VS Code",
"type": "pwa-extensionHost",
"debugWebWorkerHost": true,
"request": "launch",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}",
"--extensionDevelopmentKind=web"
],
"outFiles": ["${workspaceFolder}/dist/web/**/*.js"],
"preLaunchTask": "npm: watch"
}
]
}
Loading

0 comments on commit aa83486

Please sign in to comment.