Shanedell commented on code in PR #402:
URL: https://github.com/apache/daffodil-vscode/pull/402#discussion_r1087298328
##########
src/launchWizard/launchWizard.ts:
##########
@@ -152,38 +152,7 @@ async function openFilePicker(description) {
title: description,
})
.then(async (fileUri) => {
- if (fileUri && fileUri[0]) {
Review Comment:
So some instructions for debugging it locally can be found here [Development
Wiki
Page](https://github.com/apache/daffodil-vscode/wiki/Apache-Daffodil%E2%84%A2-Extension-for-Visual-Studio-Code:-Development#apache-daffodil-extension-for-visual-studio-code-development).
However, there is a decently quick way to get up running. After you meet the
pre-reqs listed on the link above and get this PR pulled down, run these
commands at the root of repo (this is described in the README.md under section
[Package VSIX and
Debugger](https://github.com/apache/daffodil-vscode#package-vsix-and-debugger)
and [Installation From
File](https://github.com/apache/daffodil-vscode#installation-from-file)):
```bash
rm -rf node_modules out || true
yarn install
yarn package
code --install-extension apache-daffodil-vscode-1.3.0-SNAPSHOT.vsix
```
So what this does is:
- Remove any hanging installed node package or compiled code
- Install the latest version of the node packages
- Compile the extension and debugger code, into an extension file (`.vsix`)
- Then installs the just built extension file into your VS Code editorer.
Now you should have the extension installed so you can open up VS Code, open
the launch config wizard and test if you can navigate out of the initial folder
(it should use your native os file explorer window).
However, if this is also to much I could upload a VSIX to this PR. This
would allow to download and install the vsix file made from this PRs code, then
test out the navigation.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]