-
Thank you very much for langium 0.4.0. It really runs smoothly and the documentation is very useful! Is there an example somewhere how to produce a VSIX package? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Hey @goto40, thanks for the compliment, it's always great to hear positive feedback from our users :)
Actually yes. Since Langium is written using Langium, one such example would be our langium-vscode extension. Note that you should bundle your extension and language server code before producing a VSIX package. See our code bundling guide for more info. Aside from bundling your code, all you have to do is run |
Beta Was this translation helpful? Give feedback.
-
Just as a supplement, I also found this vscode's guide useful, especially if you want to reduce your VSIX package size. |
Beta Was this translation helpful? Give feedback.
Hey @goto40,
thanks for the compliment, it's always great to hear positive feedback from our users :)
Actually yes. Since Langium is written using Langium, one such example would be our langium-vscode extension. Note that you should bundle your extension and language server code before producing a VSIX package. See our code bundling guide for more info. Aside from bundling your code, all you have to do is run
vsce package
in your extension directory.