Skip to content

Commit 7903de8

Browse files
authored
Update to JupyterLab 4.0.0a37 (#6777)
* Update JupyterLab and Lumino packages * fix resolutions * Update to TypeScript 5 final * Reuse upstream sessionDialogs plugin * update gitpod setup * Update UI tests setup * Update npmClient * try without immutable * add explicit playwright dep * Update mathjax package * update yarn.lock * update dev dependencies * lint * update yarn.lock * Fix typescript dependency * fix metapackage
1 parent 5515155 commit 7903de8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+22359
-16895
lines changed

.eslintrc.js

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ module.exports = {
44
es6: true,
55
commonjs: true,
66
node: true,
7-
'jest/globals': true
7+
'jest/globals': true,
88
},
99
root: true,
1010
extends: [
@@ -13,12 +13,12 @@ module.exports = {
1313
'plugin:@typescript-eslint/recommended',
1414
'plugin:prettier/recommended',
1515
'plugin:react/recommended',
16-
'plugin:jest/recommended'
16+
'plugin:jest/recommended',
1717
],
1818
parser: '@typescript-eslint/parser',
1919
parserOptions: {
2020
project: 'tsconfig.eslint.json',
21-
sourceType: 'module'
21+
sourceType: 'module',
2222
},
2323
plugins: ['@typescript-eslint', 'jest'],
2424
rules: {
@@ -29,9 +29,9 @@ module.exports = {
2929
format: ['PascalCase'],
3030
custom: {
3131
regex: '^I[A-Z]',
32-
match: true
33-
}
34-
}
32+
match: true,
33+
},
34+
},
3535
],
3636
'@typescript-eslint/no-unused-vars': ['warn', { args: 'none' }],
3737
'@typescript-eslint/no-explicit-any': 'off',
@@ -42,16 +42,16 @@ module.exports = {
4242
'@typescript-eslint/quotes': [
4343
'error',
4444
'single',
45-
{ avoidEscape: true, allowTemplateLiterals: false }
45+
{ avoidEscape: true, allowTemplateLiterals: false },
4646
],
4747
'jest/no-done-callback': 'off',
4848
curly: ['error', 'all'],
4949
eqeqeq: 'error',
50-
'prefer-arrow-callback': 'error'
50+
'prefer-arrow-callback': 'error',
5151
},
5252
settings: {
5353
react: {
54-
version: 'detect'
55-
}
56-
}
54+
version: 'detect',
55+
},
56+
},
5757
};

.github/workflows/buildutils.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626

2727
- name: Install dependencies
2828
run: |
29-
python -m pip install -U "jupyterlab>=4.0.0a36,<5" hatch
29+
python -m pip install -U "jupyterlab>=4.0.0a37,<5" hatch
3030
jlpm
3131
jlpm run build
3232
@@ -76,6 +76,6 @@ jobs:
7676

7777
- name: Install dependencies
7878
run: |
79-
python -m pip install -U "jupyterlab>=4.0.0a36,<5" pip
79+
python -m pip install -U "jupyterlab>=4.0.0a37,<5" pip
8080
jlpm
8181
jlpm run build

.github/workflows/playwright-update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
- name: Install the test dependencies
5252
run: |
5353
cd ui-tests
54-
jlpm --frozen-lockfile
54+
jlpm
5555
jlpm playwright install
5656
5757
- name: Update snapshots

.github/workflows/ui-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
- name: Install the test dependencies
5050
run: |
5151
cd ui-tests
52-
jlpm --frozen-lockfile
52+
jlpm
5353
jlpm playwright install
5454
5555
- name: Test

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,3 +129,9 @@ ui-tests/playwright-report
129129

130130
# RTC
131131
.jupyter_ystore.db
132+
133+
# yarn >=2.x local files
134+
.yarn/*
135+
.pnp.*
136+
ui-tests/.yarn/*
137+
ui-tests/.pnp.*

.gitpod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ tasks:
2222
micromamba activate
2323
EOT
2424
source /workspace/bin/activate-env.sh
25-
micromamba install -n base -y -c conda-forge python=3.11 nodejs=14 yarn=1
25+
micromamba install -n base -y -c conda-forge python=3.11 nodejs=18
2626
source /workspace/bin/activate-env.sh
2727
python -m pip install -e ".[dev,test]" && jlpm && jlpm run build && jlpm develop
2828
gp sync-done setup

.yarnrc.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
enableImmutableInstalls: false
2+
enableInlineBuilds: false
3+
enableTelemetry: false
4+
httpTimeout: 60000
5+
nodeLinker: node-modules

app/package.json

Lines changed: 122 additions & 120 deletions
Original file line numberDiff line numberDiff line change
@@ -22,85 +22,85 @@
2222
"@jupyter-notebook/tree-extension": "~7.0.0-alpha.16",
2323
"@jupyter-notebook/ui-components": "~7.0.0-alpha.16",
2424
"@jupyter/ydoc": "~0.3.4",
25-
"@jupyterlab/application": "~4.0.0-alpha.21",
26-
"@jupyterlab/application-extension": "~4.0.0-alpha.21",
27-
"@jupyterlab/apputils": "~4.0.0-alpha.21",
28-
"@jupyterlab/apputils-extension": "~4.0.0-alpha.21",
29-
"@jupyterlab/cell-toolbar": "~4.0.0-alpha.21",
30-
"@jupyterlab/cell-toolbar-extension": "~4.0.0-alpha.21",
25+
"@jupyterlab/application": "~4.0.0-alpha.22",
26+
"@jupyterlab/application-extension": "~4.0.0-alpha.22",
27+
"@jupyterlab/apputils": "~4.0.0-alpha.22",
28+
"@jupyterlab/apputils-extension": "~4.0.0-alpha.22",
29+
"@jupyterlab/cell-toolbar": "~4.0.0-alpha.22",
30+
"@jupyterlab/cell-toolbar-extension": "~4.0.0-alpha.22",
3131
"@jupyterlab/celltags": "~4.0.0-alpha.20",
32-
"@jupyterlab/celltags-extension": "~4.0.0-alpha.21",
33-
"@jupyterlab/codeeditor": "~4.0.0-alpha.21",
34-
"@jupyterlab/codemirror": "~4.0.0-alpha.21",
35-
"@jupyterlab/codemirror-extension": "~4.0.0-alpha.21",
36-
"@jupyterlab/completer": "~4.0.0-alpha.21",
37-
"@jupyterlab/completer-extension": "~4.0.0-alpha.21",
38-
"@jupyterlab/console": "~4.0.0-alpha.21",
39-
"@jupyterlab/console-extension": "~4.0.0-alpha.21",
40-
"@jupyterlab/coreutils": "~6.0.0-alpha.21",
41-
"@jupyterlab/debugger": "~4.0.0-alpha.21",
42-
"@jupyterlab/debugger-extension": "~4.0.0-alpha.21",
43-
"@jupyterlab/docmanager": "~4.0.0-alpha.21",
44-
"@jupyterlab/docmanager-extension": "~4.0.0-alpha.21",
45-
"@jupyterlab/documentsearch": "~4.0.0-alpha.21",
46-
"@jupyterlab/documentsearch-extension": "~4.0.0-alpha.21",
47-
"@jupyterlab/extensionmanager": "~4.0.0-alpha.21",
48-
"@jupyterlab/extensionmanager-extension": "~4.0.0-alpha.21",
49-
"@jupyterlab/filebrowser": "~4.0.0-alpha.21",
50-
"@jupyterlab/filebrowser-extension": "~4.0.0-alpha.21",
51-
"@jupyterlab/fileeditor": "~4.0.0-alpha.21",
52-
"@jupyterlab/fileeditor-extension": "~4.0.0-alpha.21",
53-
"@jupyterlab/htmlviewer": "~4.0.0-alpha.21",
54-
"@jupyterlab/htmlviewer-extension": "~4.0.0-alpha.21",
55-
"@jupyterlab/hub-extension": "~4.0.0-alpha.21",
56-
"@jupyterlab/javascript-extension": "~4.0.0-alpha.21",
57-
"@jupyterlab/json-extension": "~4.0.0-alpha.21",
58-
"@jupyterlab/lsp": "~4.0.0-alpha.21",
59-
"@jupyterlab/lsp-extension": "~4.0.0-alpha.21",
60-
"@jupyterlab/mainmenu": "~4.0.0-alpha.21",
61-
"@jupyterlab/mainmenu-extension": "~4.0.0-alpha.21",
62-
"@jupyterlab/markedparser-extension": "~4.0.0-alpha.21",
63-
"@jupyterlab/mathjax2-extension": "~4.0.0-alpha.21",
64-
"@jupyterlab/notebook": "~4.0.0-alpha.21",
65-
"@jupyterlab/notebook-extension": "~4.0.0-alpha.21",
66-
"@jupyterlab/observables": "~5.0.0-alpha.21",
67-
"@jupyterlab/outputarea": "~4.0.0-alpha.21",
68-
"@jupyterlab/pdf-extension": "~4.0.0-alpha.21",
69-
"@jupyterlab/rendermime": "~4.0.0-alpha.21",
70-
"@jupyterlab/rendermime-extension": "~4.0.0-alpha.21",
71-
"@jupyterlab/rendermime-interfaces": "~3.8.0-alpha.21",
72-
"@jupyterlab/running-extension": "~4.0.0-alpha.21",
73-
"@jupyterlab/services": "~7.0.0-alpha.21",
74-
"@jupyterlab/settingeditor": "~4.0.0-alpha.21",
75-
"@jupyterlab/settingeditor-extension": "~4.0.0-alpha.21",
76-
"@jupyterlab/settingregistry": "~4.0.0-alpha.21",
77-
"@jupyterlab/shortcuts-extension": "~4.0.0-alpha.21",
78-
"@jupyterlab/statedb": "~4.0.0-alpha.21",
79-
"@jupyterlab/statusbar": "~4.0.0-alpha.21",
80-
"@jupyterlab/terminal": "~4.0.0-alpha.21",
81-
"@jupyterlab/terminal-extension": "~4.0.0-alpha.21",
82-
"@jupyterlab/theme-dark-extension": "~4.0.0-alpha.21",
83-
"@jupyterlab/theme-light-extension": "~4.0.0-alpha.21",
84-
"@jupyterlab/toc-extension": "~6.0.0-alpha.21",
85-
"@jupyterlab/tooltip": "~4.0.0-alpha.21",
86-
"@jupyterlab/tooltip-extension": "~4.0.0-alpha.21",
87-
"@jupyterlab/translation": "~4.0.0-alpha.21",
88-
"@jupyterlab/translation-extension": "~4.0.0-alpha.21",
89-
"@jupyterlab/ui-components": "~4.0.0-alpha.36",
90-
"@jupyterlab/ui-components-extension": "~4.0.0-alpha.21",
91-
"@jupyterlab/vega5-extension": "~4.0.0-alpha.21",
92-
"@lumino/algorithm": "~2.0.0-rc.1",
93-
"@lumino/application": "~2.0.0-rc.1",
94-
"@lumino/commands": "~2.0.0-rc.1",
95-
"@lumino/coreutils": "~2.0.0-rc.1",
96-
"@lumino/disposable": "~2.0.0-rc.1",
97-
"@lumino/domutils": "~2.0.0-rc.1",
98-
"@lumino/dragdrop": "~2.0.0-rc.1",
99-
"@lumino/messaging": "~2.0.0-rc.1",
100-
"@lumino/properties": "~2.0.0-rc.1",
101-
"@lumino/signaling": "~2.0.0-rc.1",
102-
"@lumino/virtualdom": "~2.0.0-rc.1",
103-
"@lumino/widgets": "~2.0.0-rc.1",
32+
"@jupyterlab/celltags-extension": "~4.0.0-alpha.22",
33+
"@jupyterlab/codeeditor": "~4.0.0-alpha.22",
34+
"@jupyterlab/codemirror": "~4.0.0-alpha.22",
35+
"@jupyterlab/codemirror-extension": "~4.0.0-alpha.22",
36+
"@jupyterlab/completer": "~4.0.0-alpha.22",
37+
"@jupyterlab/completer-extension": "~4.0.0-alpha.22",
38+
"@jupyterlab/console": "~4.0.0-alpha.22",
39+
"@jupyterlab/console-extension": "~4.0.0-alpha.22",
40+
"@jupyterlab/coreutils": "~6.0.0-alpha.22",
41+
"@jupyterlab/debugger": "~4.0.0-alpha.22",
42+
"@jupyterlab/debugger-extension": "~4.0.0-alpha.22",
43+
"@jupyterlab/docmanager": "~4.0.0-alpha.22",
44+
"@jupyterlab/docmanager-extension": "~4.0.0-alpha.22",
45+
"@jupyterlab/documentsearch": "~4.0.0-alpha.22",
46+
"@jupyterlab/documentsearch-extension": "~4.0.0-alpha.22",
47+
"@jupyterlab/extensionmanager": "~4.0.0-alpha.22",
48+
"@jupyterlab/extensionmanager-extension": "~4.0.0-alpha.22",
49+
"@jupyterlab/filebrowser": "~4.0.0-alpha.22",
50+
"@jupyterlab/filebrowser-extension": "~4.0.0-alpha.22",
51+
"@jupyterlab/fileeditor": "~4.0.0-alpha.22",
52+
"@jupyterlab/fileeditor-extension": "~4.0.0-alpha.22",
53+
"@jupyterlab/htmlviewer": "~4.0.0-alpha.22",
54+
"@jupyterlab/htmlviewer-extension": "~4.0.0-alpha.22",
55+
"@jupyterlab/hub-extension": "~4.0.0-alpha.22",
56+
"@jupyterlab/javascript-extension": "~4.0.0-alpha.22",
57+
"@jupyterlab/json-extension": "~4.0.0-alpha.22",
58+
"@jupyterlab/lsp": "~4.0.0-alpha.22",
59+
"@jupyterlab/lsp-extension": "~4.0.0-alpha.22",
60+
"@jupyterlab/mainmenu": "~4.0.0-alpha.22",
61+
"@jupyterlab/mainmenu-extension": "~4.0.0-alpha.22",
62+
"@jupyterlab/markedparser-extension": "~4.0.0-alpha.22",
63+
"@jupyterlab/mathjax-extension": "~4.0.0-alpha.22",
64+
"@jupyterlab/notebook": "~4.0.0-alpha.22",
65+
"@jupyterlab/notebook-extension": "~4.0.0-alpha.22",
66+
"@jupyterlab/observables": "~5.0.0-alpha.22",
67+
"@jupyterlab/outputarea": "~4.0.0-alpha.22",
68+
"@jupyterlab/pdf-extension": "~4.0.0-alpha.22",
69+
"@jupyterlab/rendermime": "~4.0.0-alpha.22",
70+
"@jupyterlab/rendermime-extension": "~4.0.0-alpha.22",
71+
"@jupyterlab/rendermime-interfaces": "~3.8.0-alpha.22",
72+
"@jupyterlab/running-extension": "~4.0.0-alpha.22",
73+
"@jupyterlab/services": "~7.0.0-alpha.22",
74+
"@jupyterlab/settingeditor": "~4.0.0-alpha.22",
75+
"@jupyterlab/settingeditor-extension": "~4.0.0-alpha.22",
76+
"@jupyterlab/settingregistry": "~4.0.0-alpha.22",
77+
"@jupyterlab/shortcuts-extension": "~4.0.0-alpha.22",
78+
"@jupyterlab/statedb": "~4.0.0-alpha.22",
79+
"@jupyterlab/statusbar": "~4.0.0-alpha.22",
80+
"@jupyterlab/terminal": "~4.0.0-alpha.22",
81+
"@jupyterlab/terminal-extension": "~4.0.0-alpha.22",
82+
"@jupyterlab/theme-dark-extension": "~4.0.0-alpha.22",
83+
"@jupyterlab/theme-light-extension": "~4.0.0-alpha.22",
84+
"@jupyterlab/toc-extension": "~6.0.0-alpha.22",
85+
"@jupyterlab/tooltip": "~4.0.0-alpha.22",
86+
"@jupyterlab/tooltip-extension": "~4.0.0-alpha.22",
87+
"@jupyterlab/translation": "~4.0.0-alpha.22",
88+
"@jupyterlab/translation-extension": "~4.0.0-alpha.22",
89+
"@jupyterlab/ui-components": "~4.0.0-alpha.37",
90+
"@jupyterlab/ui-components-extension": "~4.0.0-alpha.22",
91+
"@jupyterlab/vega5-extension": "~4.0.0-alpha.22",
92+
"@lumino/algorithm": "~2.0.0",
93+
"@lumino/application": "~2.0.0",
94+
"@lumino/commands": "~2.0.0",
95+
"@lumino/coreutils": "~2.0.0",
96+
"@lumino/disposable": "~2.0.0",
97+
"@lumino/domutils": "~2.0.0",
98+
"@lumino/dragdrop": "~2.0.0",
99+
"@lumino/messaging": "~2.0.0",
100+
"@lumino/properties": "~2.0.0",
101+
"@lumino/signaling": "~2.0.0",
102+
"@lumino/virtualdom": "~2.0.0",
103+
"@lumino/widgets": "~2.0.0",
104104
"react": "~18.2.0",
105105
"react-dom": "~18.2.0",
106106
"yjs": "~13.5.50"
@@ -117,52 +117,53 @@
117117
"@jupyter-notebook/tree": "^7.0.0-alpha.16",
118118
"@jupyter-notebook/tree-extension": "^7.0.0-alpha.16",
119119
"@jupyter-notebook/ui-components": "^7.0.0-alpha.16",
120-
"@jupyterlab/application-extension": "^4.0.0-alpha.21",
121-
"@jupyterlab/apputils-extension": "^4.0.0-alpha.21",
122-
"@jupyterlab/cell-toolbar-extension": "^4.0.0-alpha.21",
120+
"@jupyterlab/application-extension": "^4.0.0-alpha.22",
121+
"@jupyterlab/apputils-extension": "^4.0.0-alpha.22",
122+
"@jupyterlab/cell-toolbar-extension": "^4.0.0-alpha.22",
123123
"@jupyterlab/celltags": "^4.0.0-alpha.20",
124-
"@jupyterlab/celltags-extension": "^4.0.0-alpha.21",
125-
"@jupyterlab/codemirror": "^4.0.0-alpha.21",
126-
"@jupyterlab/codemirror-extension": "^4.0.0-alpha.21",
127-
"@jupyterlab/completer-extension": "^4.0.0-alpha.21",
128-
"@jupyterlab/console-extension": "^4.0.0-alpha.21",
129-
"@jupyterlab/coreutils": "^6.0.0-alpha.21",
130-
"@jupyterlab/debugger-extension": "^4.0.0-alpha.21",
131-
"@jupyterlab/docmanager-extension": "^4.0.0-alpha.21",
132-
"@jupyterlab/documentsearch-extension": "^4.0.0-alpha.21",
133-
"@jupyterlab/extensionmanager-extension": "^4.0.0-alpha.21",
134-
"@jupyterlab/filebrowser-extension": "^4.0.0-alpha.21",
135-
"@jupyterlab/fileeditor-extension": "^4.0.0-alpha.21",
136-
"@jupyterlab/htmlviewer-extension": "^4.0.0-alpha.21",
137-
"@jupyterlab/hub-extension": "^4.0.0-alpha.21",
138-
"@jupyterlab/javascript-extension": "^4.0.0-alpha.21",
139-
"@jupyterlab/json-extension": "^4.0.0-alpha.21",
140-
"@jupyterlab/lsp": "^4.0.0-alpha.21",
141-
"@jupyterlab/lsp-extension": "^4.0.0-alpha.21",
142-
"@jupyterlab/mainmenu-extension": "^4.0.0-alpha.21",
143-
"@jupyterlab/markedparser-extension": "^4.0.0-alpha.21",
144-
"@jupyterlab/mathjax2-extension": "^4.0.0-alpha.21",
145-
"@jupyterlab/notebook-extension": "^4.0.0-alpha.21",
146-
"@jupyterlab/pdf-extension": "^4.0.0-alpha.21",
147-
"@jupyterlab/rendermime-extension": "^4.0.0-alpha.21",
148-
"@jupyterlab/running-extension": "^4.0.0-alpha.21",
149-
"@jupyterlab/settingeditor": "^4.0.0-alpha.21",
150-
"@jupyterlab/settingeditor-extension": "^4.0.0-alpha.21",
151-
"@jupyterlab/shortcuts-extension": "^4.0.0-alpha.21",
152-
"@jupyterlab/terminal-extension": "^4.0.0-alpha.21",
153-
"@jupyterlab/theme-dark-extension": "^4.0.0-alpha.21",
154-
"@jupyterlab/theme-light-extension": "^4.0.0-alpha.21",
155-
"@jupyterlab/toc-extension": "^6.0.0-alpha.21",
156-
"@jupyterlab/tooltip-extension": "^4.0.0-alpha.21",
157-
"@jupyterlab/translation-extension": "^4.0.0-alpha.21",
158-
"@jupyterlab/ui-components-extension": "^4.0.0-alpha.21",
159-
"@jupyterlab/vega5-extension": "^4.0.0-alpha.21"
124+
"@jupyterlab/celltags-extension": "^4.0.0-alpha.22",
125+
"@jupyterlab/codemirror": "^4.0.0-alpha.22",
126+
"@jupyterlab/codemirror-extension": "^4.0.0-alpha.22",
127+
"@jupyterlab/completer-extension": "^4.0.0-alpha.22",
128+
"@jupyterlab/console-extension": "^4.0.0-alpha.22",
129+
"@jupyterlab/coreutils": "^6.0.0-alpha.22",
130+
"@jupyterlab/debugger-extension": "^4.0.0-alpha.22",
131+
"@jupyterlab/docmanager-extension": "^4.0.0-alpha.22",
132+
"@jupyterlab/documentsearch-extension": "^4.0.0-alpha.22",
133+
"@jupyterlab/extensionmanager-extension": "^4.0.0-alpha.22",
134+
"@jupyterlab/filebrowser-extension": "^4.0.0-alpha.22",
135+
"@jupyterlab/fileeditor-extension": "^4.0.0-alpha.22",
136+
"@jupyterlab/htmlviewer-extension": "^4.0.0-alpha.22",
137+
"@jupyterlab/hub-extension": "^4.0.0-alpha.22",
138+
"@jupyterlab/javascript-extension": "^4.0.0-alpha.22",
139+
"@jupyterlab/json-extension": "^4.0.0-alpha.22",
140+
"@jupyterlab/lsp": "^4.0.0-alpha.22",
141+
"@jupyterlab/lsp-extension": "^4.0.0-alpha.22",
142+
"@jupyterlab/mainmenu-extension": "^4.0.0-alpha.22",
143+
"@jupyterlab/markedparser-extension": "^4.0.0-alpha.22",
144+
"@jupyterlab/mathjax-extension": "^4.0.0-alpha.22",
145+
"@jupyterlab/notebook-extension": "^4.0.0-alpha.22",
146+
"@jupyterlab/pdf-extension": "^4.0.0-alpha.22",
147+
"@jupyterlab/rendermime-extension": "^4.0.0-alpha.22",
148+
"@jupyterlab/running-extension": "^4.0.0-alpha.22",
149+
"@jupyterlab/settingeditor": "^4.0.0-alpha.22",
150+
"@jupyterlab/settingeditor-extension": "^4.0.0-alpha.22",
151+
"@jupyterlab/shortcuts-extension": "^4.0.0-alpha.22",
152+
"@jupyterlab/terminal-extension": "^4.0.0-alpha.22",
153+
"@jupyterlab/theme-dark-extension": "^4.0.0-alpha.22",
154+
"@jupyterlab/theme-light-extension": "^4.0.0-alpha.22",
155+
"@jupyterlab/toc-extension": "^6.0.0-alpha.22",
156+
"@jupyterlab/tooltip-extension": "^4.0.0-alpha.22",
157+
"@jupyterlab/translation-extension": "^4.0.0-alpha.22",
158+
"@jupyterlab/ui-components-extension": "^4.0.0-alpha.22",
159+
"@jupyterlab/vega5-extension": "^4.0.0-alpha.22"
160160
},
161161
"devDependencies": {
162-
"@jupyterlab/builder": "^4.0.0-alpha.21",
163-
"@jupyterlab/buildutils": "^4.0.0-alpha.21",
162+
"@jupyterlab/builder": "^4.0.0-alpha.22",
163+
"@jupyterlab/buildutils": "^4.0.0-alpha.22",
164164
"@types/rimraf": "^3.0.2",
165165
"css-loader": "~5.0.1",
166+
"extra-watch-webpack-plugin": "^1.0.3",
166167
"fs-extra": "^8.1.0",
167168
"glob": "~7.1.6",
168169
"handlebars": "^4.7.7",
@@ -205,6 +206,7 @@
205206
"@jupyterlab/apputils-extension": [
206207
"@jupyterlab/apputils-extension:palette",
207208
"@jupyterlab/apputils-extension:sanitizer",
209+
"@jupyterlab/apputils-extension:sessionDialogs",
208210
"@jupyterlab/apputils-extension:settings",
209211
"@jupyterlab/apputils-extension:state",
210212
"@jupyterlab/apputils-extension:themes",
@@ -242,7 +244,7 @@
242244
"@jupyterlab/lsp-extension": true,
243245
"@jupyterlab/mainmenu-extension": true,
244246
"@jupyterlab/markedparser-extension": true,
245-
"@jupyterlab/mathjax2-extension": true,
247+
"@jupyterlab/mathjax-extension": true,
246248
"@jupyterlab/notebook-extension": [
247249
"@jupyterlab/notebook-extension:code-console",
248250
"@jupyterlab/notebook-extension:export",

0 commit comments

Comments
 (0)