You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Package it using vsce package and observe it works as expected in VSCode Web installed from the marketplace
Package it using vsce package --target web and observe it does not work as expected in VSCode Web installed from the marketplace
It's not clear whether this issue is in VS Codevsce or in the marketplace/hosting, but my guess is there is something which blocks tasks when the extension is explicitly built for the web.
The text was updated successfully, but these errors were encountered:
I think this is working as expected. If an extension contributes tasks, the expectation would be that it's packaged for not only the web, as tasks are not really designed to run there.
I also have not seen other reports of this, so don't imagine we will get to investigating it any time soon. Thanks for the issue and for your understanding.
Does this issue occur when all extensions are disabled?:No
Issue:
Although tasks are not currently officially supported in VS Code web, they do work for PseudoTerminal-based task providers.
However, the packaging method of the VSIX extension effects whether these work or not.
In our testing, tasks in VS Code Web work correctly when:
However tasks do not work when the VSIX is packaged explicitly for the web using:
In this case, the tasks.json is successfully parsed without squiggles, but the following error appears when executing the task:
I believe there is an intent to increase tasks support in VS Code Web so would be keen to see a fix for this issue.
Steps to Reproduce:
vsce package
and observe it works as expected in VSCode Web installed from the marketplacevsce package --target web
and observe it does not work as expected in VSCode Web installed from the marketplaceIt's not clear whether this issue is in
VS Code
vsce
or in the marketplace/hosting, but my guess is there is something which blocks tasks when the extension is explicitly built for the web.The text was updated successfully, but these errors were encountered: