How can I "publish" my extension? #1779
-
I followed the langium tutorials and I have a working language which works when I debug the extension and custom a CLI command which I can call from my development project. Now my next question is, how can I actually "publish" and use these, instead of running it from my VS Code project? My goal:
I assume all of this is already supported and Im just missing the final puzzle piece to "build" the extension? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Hey @AignerGames, for most VS Code related questions you can refer to their docs (on publishing extensions). It explains the process of packaging and publishing extensions in detail. Before publishing, I would recommend to manually install the created
How do you execute the CLI command? Is it bundled together with the extension code or does it run as a separate process (I.e. as a real CLI tool)? |
Beta Was this translation helpful? Give feedback.
Hey @AignerGames,
for most VS Code related questions you can refer to their docs (on publishing extensions). It explains the process of packaging and publishing extensions in detail.
Before publishing, I would recommend to manually install the created
.vsix
file once into your VS Code instance to ensure that everything works as expected.How do you execute the CLI command? Is it bundled together with the extension code or does it run as a separate process (I.e. as a real CLI tool)?