-
Hi, I have Run isolated example of Get the folder Add add in add in after that, I launch
Please, what is the correct way to add |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Thanks for detailing the steps you did! They make perfect sense and should be correct. From the error I suspect that you pulled in multiple versions of Theia, in particular You can also run If you have multiple versions there, you'd need to find out why (e.g. using There was a similar discussion a few months ago: #816 Hope this helps! |
Beta Was this translation helpful? Give feedback.
Thanks for detailing the steps you did! They make perfect sense and should be correct.
From the error I suspect that you pulled in multiple versions of Theia, in particular
@theia/workspace
. If you have multiple versions, the dependency injection breaks. Can you check in youryarn.lock
whether everything resolved to exactly one@theia/workspace
version and all other@theia/*
extensions resolved to the same version?I see that you've hard-pinned to
1.34.0
so all@theia/*
extensions must be resolved to that version.You can also run
yarn theia check:theia-version
to check whether there are multiple versions of Theia mixed in your project.If you have multiple versions there, you'd need to f…