-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Attempt to fix build error due to too many files open (#4198)
This PR moves the IPyWidgets renderer into its own little package so that it has its own `node_modules` separate from the `positron-ipywidgets` extension, then adds those `node_modules` to the extension's `.vscodeignore` file which should stop them from being copied over during the build. This fixes `yarn gulp compile-extensions-build` for me locally, which currently errors on main.
- Loading branch information
Showing
11 changed files
with
665 additions
and
732 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
renderer/node_modules/** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"name": "positron-ipywidgets-renderer", | ||
"description": "Positron IPyWidgets Notebook Renderer", | ||
"version": "0.0.1", | ||
"dependencies": { | ||
"@fortawesome/fontawesome-free": "^5.15.4", | ||
"@jupyter-widgets/base": "^6.0.7", | ||
"@jupyter-widgets/base-manager": "^1.0.8", | ||
"@jupyter-widgets/controls": "^5.0.8", | ||
"@jupyter-widgets/output": "^6.0.7", | ||
"@jupyterlab/services": "^7.2.3", | ||
"@lumino/coreutils": "^2.1.2", | ||
"@lumino/widgets": "^2.3.2" | ||
}, | ||
"devDependencies": { | ||
"@types/vscode-webview": "^1.57.5", | ||
"typescript": "^5.4.5" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.