Cannot remove plugins from Theia IDE #13690
Replies: 1 comment 19 replies
-
Hey @dagoston93,
Since all of these packages are required during compile time by the We have a contribution filter API to prevent certain widgets/commands/menus from being contributed. You should use that instead.
What kind of IDs are you using for the In case that doesn't help, please provide a reproducible example repo. |
Beta Was this translation helpful? Give feedback.
-
Hi,
I created an IDE project by downloading the Theia IDE repo and customize it as necessary.
I managed to add some custom features, change the branding, but I have problems with removing stuff...
First I tried to remove some Themes (for example Abyss, Red, Solarized, etc...), but failed to do so.
First I tried to add the package ids to the
theiaPluginsExcludeIds
properties of the main package.json file. But after running yarn clean, deleting the plugins folder, and then re-building the themes still exists in the File/Preferences/Color ThemesThen I tried to remove the whole
eclipse-theia.builtin-extension-pack
that includes them, thinking that I will re-add plugins I need, but after re-building the same way, no effect...Then I thought I would try to remove a couple of views that I do not need. But again, failure...
What I did was, to remove some dependencies from the applications/electron/package.json file.
For example:
But again after rebuilding, nothing happens, the views are still available, and even more strangely, the plugins are downloaded to the plugins folder...
What am I doing wrong, and how to remove the items I do not need?
Thanks in advance for any help,
Best regards,
Agoston
Beta Was this translation helpful? Give feedback.
All reactions