Bundling and publishing extensions as npm packages #491
Replies: 1 comment
-
2 rollup plugins are published, they can be used to transform a vsix file or a directory to an importable extension
If you want you client to be attached to the adapter, you'll need a channel between them. That is exactly what is demoed in the demo here. But you wont be able to reuse the An alternative is to use the extension host server, and run the debug adapter server side |
Beta Was this translation helpful? Give feedback.
-
Are there any docs that explain how to bundle an extension and publish it as an npm package in the same way you did with the default extensions? Is that possible?
I'm trying to use the vscode-js-debug extension and bundle it as part of my web app. However, it seems like it wasn't designed to work with VSCode Web. I understand that it's possible to have the adapter on the server side, as shown in the demo, but I want to keep the adapter on the client side and attach the VSCode debugger to a running Node.js process.
I understand if this issue might be outside the project's scope so feel free to close it.
Beta Was this translation helpful? Give feedback.
All reactions