Closed tomjakubowski closed 1 year ago
Thank you for opening your first issue in this project! Engagement like this is essential for open source projects! :hugs:
If you haven't done so already, check out Jupyter's Code of Conduct. Also, please try to follow the issue template as it helps other other community members to contribute more effectively.
You can meet the other Jovyans by joining our Discourse forum. There is also an intro thread there where you can stop by and say Hi! :wave:
Welcome to the Jupyter community! :tada:
Hey @tomjakubowski thanks for reporting. I would recommend you to use the following resolution instead of the one you mentionned:
"resolutions": {
"@lumino/widgets": "^1.0.0"
}
This will make your set up more robust.
@tomjakubowski I updated the 3.0 branch for this.
Description
When creating an extension from the 3.0 branch, two versions of @lumino/widgets are included which causes the Typescript bulid to fail.
Reproduce
This produces an error about mismatched interfaces in @lumino/widgets.
The culprit is that
@jupyterlab/rendermime-interfaces
version 3.8.2 is bringing in an extra version of@lumino/widgets
which is incompatible. I diagnosed this usingjlpm list
.I am able to work around the issue by instructing yarn to use rendermime-interfaces 3.6.5:
Expected behavior
A working build w/ only one resolved version of
@lumino/widgets
Context