-
Notifications
You must be signed in to change notification settings - Fork 207
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
hbenl.vscode-test-explorer, ms-python.python : missing "out" folder #29
Comments
Good catch, thanks @marcdumais-work. @spoenemann Is If so, should it always be done explicitly before |
No, not always. I think most extensions do that as part of the |
That's my experience as well. But since VS Code extensions are self-published, so long as the author knows how to get to a working package, it works. BTW, I think the same or similar thing was happening with extension |
I think
The extension exists at that path, except from |
Fixed in #36 by adding an extra Also, I've added back I can also add back |
Ok, I checked https://github.com/eclipse-theia/theia/blob/master/package.json again, and found that |
Nope. They are fetched by vscode's build and not packaged as builtin extensions AFAIK, unless maybe they're burred inside one of the builtin. So far we have a fork for these repos on theia-ide org and build/publish them (to GH Releases) manually |
https://open-vsx.org/extension/hbenl/vscode-test-explorer
Normally after build it should have a
out
folder that contains the "executables" (.js files) for that extension, that gets packaged in the.vsix
, but that's missing from what's published on open vsx.Building it locally, I was able to obtain that folder with these commands:
I see the
npm install
is covered. I do not see thatnpm run build
is called?If this is unexpected to be required, maybe a solution would be to support a field in
extensions.json
where one can add extra required command(s) to run to correctly build some extensions that need a bit more of a custom procedure, before the script proceeds to that packaging/publishing phase?update:
for ms-python.python I was able to update the
out
folder like so:The text was updated successfully, but these errors were encountered: