Skip to content

Commit e1559e5

Browse files
authored
Fix ipywidgets 7 in JupyterLab 4 (#3927)
* Back to es6 build for ipywidgets 7 This fixes ipywidgets 7 in the case of lab 4 * Remove browser check
1 parent 209016f commit e1559e5

File tree

4 files changed

+3
-10
lines changed

4 files changed

+3
-10
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ jobs:
5757
pip install -e .
5858
jupyter labextension develop . --overwrite
5959
jupyter labextension list
60-
python -m jupyterlab.browser_check
6160
popd
6261
6362
# Finally, install the base ipywidgets package now that we have the jupyterlab_widgets dependency

packages/base/tsconfig.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22
"extends": "../../tsconfigbase",
33
"compilerOptions": {
44
"outDir": "lib",
5-
"rootDir": "src",
6-
"lib": ["dom", "es5", "es2015.promise", "es2015.iterable"],
7-
"target": "es5"
5+
"rootDir": "src"
86
},
97
"include": ["src/*"]
108
}

packages/controls/tsconfig.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@
33
"compilerOptions": {
44
"outDir": "lib",
55
"rootDir": "src",
6-
"types": ["mathjax", "node"],
7-
"lib": ["dom", "es5", "es2015.promise", "es2015.iterable"],
8-
"target": "es5"
6+
"types": ["mathjax", "node"]
97
},
108
"include": ["src/**/*"],
119
"exclude": ["src/typedoc.d.ts"],

packages/output/tsconfig.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22
"extends": "../../tsconfigbase",
33
"compilerOptions": {
44
"outDir": "lib",
5-
"rootDir": "src",
6-
"lib": ["dom", "es5", "es2015.promise", "es2015.iterable"],
7-
"target": "es5"
5+
"rootDir": "src"
86
},
97
"include": ["src/**/*"],
108
"exclude": ["src/typedoc.d.ts"],

0 commit comments

Comments
 (0)