You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Jupyter Extension version (available under the Extensions sidebar): v2021.1.499599561-dev
OS (Windows | Mac | Linux distro) and version: macOS
Python and/or Anaconda version: 2.7.5
Type of virtual environment used (N/A | venv | virtualenv | conda | ...): N/A
Jupyter server running: Local | Remote | N/A
The vsix is currently 25MB, which is pretty large compared to other extensions or VS Code itself (~70MB on Windows). After taking a look at what are bundled into the vsix, I found that
Three copies of vendor renderers (datasource.bundle, geojson, vega, nteract, etc). Each copy is around 7.5MB
Multiple copies of require.js (note that VS Code renderer ships with AMD loader)
Tens of MB source map files, which are not necessary for release
By removing them, the vsix can go down to 16MB (64%), though it's still large, but it's much better than before.
The text was updated successfully, but these errors were encountered:
Environment data
The vsix is currently 25MB, which is pretty large compared to other extensions or VS Code itself (~70MB on Windows). After taking a look at what are bundled into the vsix, I found that
datasource.bundle
,geojson
,vega
,nteract
, etc). Each copy is around 7.5MBrequire.js
(note that VS Code renderer ships with AMD loader)By removing them, the vsix can go down to 16MB (64%), though it's still large, but it's much better than before.
The text was updated successfully, but these errors were encountered: