-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dynamically load IPyWidgets 7 #21
Conversation
@@ -1,6 +1,6 @@ | |||
{ | |||
"name": "@vscode/jupyter-ipywidgets7", | |||
"version": "1.0.3", | |||
"version": "2.0.0", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Introduced some API changes (changes to how the script is loaded an the API to communicate with this)
Hence the major bump
|
||
type KernelMessagingApi = { | ||
postKernelMessage: (data: unknown) => void; | ||
}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Dead code
plugins: [ | ||
...common.getDefaultPlugins('ipywidgets'), | ||
new webpack.optimize.LimitChunkCountPlugin({ | ||
maxChunks: 1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Being explicit to ensure we have a single js file
For microsoft/vscode-jupyter#8552