mirror of
https://github.com/jupyter/notebook.git
synced 2024-11-27 03:20:27 +08:00
Update to JupyterLab 3.1.0rc2
This commit is contained in:
parent
a7ed40634f
commit
75e1519276
@ -92,7 +92,11 @@ async function main() {
|
||||
|
||||
// @jupyterlab plugins
|
||||
require('@jupyterlab/application-extension').default.filter(({ id }) =>
|
||||
['@jupyterlab/application-extension:faviconbusy'].includes(id)
|
||||
[
|
||||
'@jupyterlab/application-extension:commands',
|
||||
'@jupyterlab/application-extension:context-menu',
|
||||
'@jupyterlab/application-extension:faviconbusy'
|
||||
].includes(id)
|
||||
),
|
||||
require('@jupyterlab/apputils-extension').default.filter(({ id }) =>
|
||||
[
|
||||
|
@ -84,30 +84,30 @@
|
||||
"react-dom": "~17.0.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"@jupyterlab/application-extension": "^3.1.0-rc.1",
|
||||
"@jupyterlab/apputils-extension": "^3.1.0-rc.1",
|
||||
"@jupyterlab/celltags": "^3.1.0-rc.1",
|
||||
"@jupyterlab/codemirror-extension": "^3.1.0-rc.1",
|
||||
"@jupyterlab/completer-extension": "^3.1.0-rc.1",
|
||||
"@jupyterlab/coreutils": "~5.1.0-rc.1",
|
||||
"@jupyterlab/docmanager-extension": "^3.1.0-rc.1",
|
||||
"@jupyterlab/filebrowser-extension": "^3.1.0-rc.1",
|
||||
"@jupyterlab/fileeditor-extension": "^3.1.0-rc.1",
|
||||
"@jupyterlab/hub-extension": "^3.1.0-rc.1",
|
||||
"@jupyterlab/javascript-extension": "^3.1.0-rc.1",
|
||||
"@jupyterlab/json-extension": "^3.1.0-rc.1",
|
||||
"@jupyterlab/mainmenu-extension": "^3.1.0-rc.1",
|
||||
"@jupyterlab/mathjax2-extension": "^3.1.0-rc.1",
|
||||
"@jupyterlab/notebook-extension": "^3.1.0-rc.1",
|
||||
"@jupyterlab/pdf-extension": "^3.1.0-rc.1",
|
||||
"@jupyterlab/rendermime-extension": "^3.1.0-rc.1",
|
||||
"@jupyterlab/running-extension": "^3.1.0-rc.1",
|
||||
"@jupyterlab/shortcuts-extension": "^3.1.0-rc.1",
|
||||
"@jupyterlab/terminal-extension": "^3.1.0-rc.1",
|
||||
"@jupyterlab/theme-dark-extension": "^3.1.0-rc.1",
|
||||
"@jupyterlab/theme-light-extension": "^3.1.0-rc.1",
|
||||
"@jupyterlab/tooltip-extension": "^3.1.0-rc.1",
|
||||
"@jupyterlab/vega5-extension": "^3.1.0-rc.1",
|
||||
"@jupyterlab/application-extension": "^3.1.0-rc.2",
|
||||
"@jupyterlab/apputils-extension": "^3.1.0-rc.2",
|
||||
"@jupyterlab/celltags": "^3.1.0-rc.2",
|
||||
"@jupyterlab/codemirror-extension": "^3.1.0-rc.2",
|
||||
"@jupyterlab/completer-extension": "^3.1.0-rc.2",
|
||||
"@jupyterlab/coreutils": "~5.1.0-rc.2",
|
||||
"@jupyterlab/docmanager-extension": "^3.1.0-rc.2",
|
||||
"@jupyterlab/filebrowser-extension": "^3.1.0-rc.2",
|
||||
"@jupyterlab/fileeditor-extension": "^3.1.0-rc.2",
|
||||
"@jupyterlab/hub-extension": "^3.1.0-rc.2",
|
||||
"@jupyterlab/javascript-extension": "^3.1.0-rc.2",
|
||||
"@jupyterlab/json-extension": "^3.1.0-rc.2",
|
||||
"@jupyterlab/mainmenu-extension": "^3.1.0-rc.2",
|
||||
"@jupyterlab/mathjax2-extension": "^3.1.0-rc.2",
|
||||
"@jupyterlab/notebook-extension": "^3.1.0-rc.2",
|
||||
"@jupyterlab/pdf-extension": "^3.1.0-rc.2",
|
||||
"@jupyterlab/rendermime-extension": "^3.1.0-rc.2",
|
||||
"@jupyterlab/running-extension": "^3.1.0-rc.2",
|
||||
"@jupyterlab/shortcuts-extension": "^3.1.0-rc.2",
|
||||
"@jupyterlab/terminal-extension": "^3.1.0-rc.2",
|
||||
"@jupyterlab/theme-dark-extension": "^3.1.0-rc.2",
|
||||
"@jupyterlab/theme-light-extension": "^3.1.0-rc.2",
|
||||
"@jupyterlab/tooltip-extension": "^3.1.0-rc.2",
|
||||
"@jupyterlab/vega5-extension": "^3.1.0-rc.2",
|
||||
"@retrolab/application": "^0.3.0-rc.0",
|
||||
"@retrolab/application-extension": "^0.3.0-rc.0",
|
||||
"@retrolab/docmanager-extension": "^0.3.0-rc.0",
|
||||
@ -118,8 +118,8 @@
|
||||
"@retrolab/ui-components": "^0.3.0-rc.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@jupyterlab/builder": "^3.1.0-rc.1",
|
||||
"@jupyterlab/buildutils": "^3.1.0-rc.1",
|
||||
"@jupyterlab/builder": "^3.1.0-rc.2",
|
||||
"@jupyterlab/buildutils": "^3.1.0-rc.2",
|
||||
"@playwright/test": "^1.12.3",
|
||||
"@types/rimraf": "^3.0.0",
|
||||
"css-loader": "~5.0.1",
|
||||
|
@ -30,7 +30,7 @@
|
||||
"watch": "tsc -w --listEmittedFiles"
|
||||
},
|
||||
"dependencies": {
|
||||
"@jupyterlab/buildutils": "^3.1.0-rc.1",
|
||||
"@jupyterlab/buildutils": "^3.1.0-rc.2",
|
||||
"commander": "^6.2.0",
|
||||
"fs-extra": "^9.1.0",
|
||||
"typescript": "~4.1.3"
|
||||
|
@ -49,7 +49,7 @@
|
||||
}
|
||||
},
|
||||
"devDependencies": {
|
||||
"@jupyterlab/buildutils": "^3.1.0-rc.1",
|
||||
"@jupyterlab/buildutils": "^3.1.0-rc.2",
|
||||
"@typescript-eslint/eslint-plugin": "^4.2.0",
|
||||
"@typescript-eslint/parser": "^4.2.0",
|
||||
"eslint": "^7.10.0",
|
||||
|
@ -39,17 +39,17 @@
|
||||
"watch": "tsc -b --watch"
|
||||
},
|
||||
"dependencies": {
|
||||
"@jupyterlab/application": "^3.1.0-rc.1",
|
||||
"@jupyterlab/apputils": "^3.1.0-rc.1",
|
||||
"@jupyterlab/celltags": "^3.1.0-rc.1",
|
||||
"@jupyterlab/codeeditor": "^3.1.0-rc.1",
|
||||
"@jupyterlab/codemirror": "^3.1.0-rc.1",
|
||||
"@jupyterlab/coreutils": "^5.1.0-rc.1",
|
||||
"@jupyterlab/docmanager": "^3.1.0-rc.1",
|
||||
"@jupyterlab/docregistry": "^3.1.0-rc.1",
|
||||
"@jupyterlab/mainmenu": "^3.1.0-rc.1",
|
||||
"@jupyterlab/settingregistry": "^3.1.0-rc.1",
|
||||
"@jupyterlab/translation": "^3.1.0-rc.1",
|
||||
"@jupyterlab/application": "^3.1.0-rc.2",
|
||||
"@jupyterlab/apputils": "^3.1.0-rc.2",
|
||||
"@jupyterlab/celltags": "^3.1.0-rc.2",
|
||||
"@jupyterlab/codeeditor": "^3.1.0-rc.2",
|
||||
"@jupyterlab/codemirror": "^3.1.0-rc.2",
|
||||
"@jupyterlab/coreutils": "^5.1.0-rc.2",
|
||||
"@jupyterlab/docmanager": "^3.1.0-rc.2",
|
||||
"@jupyterlab/docregistry": "^3.1.0-rc.2",
|
||||
"@jupyterlab/mainmenu": "^3.1.0-rc.2",
|
||||
"@jupyterlab/settingregistry": "^3.1.0-rc.2",
|
||||
"@jupyterlab/translation": "^3.1.0-rc.2",
|
||||
"@lumino/widgets": "^1.23.0",
|
||||
"@retrolab/application": "^0.3.0-rc.0",
|
||||
"@retrolab/ui-components": "^0.3.0-rc.0"
|
||||
|
@ -43,11 +43,11 @@
|
||||
"watch": "tsc -b --watch"
|
||||
},
|
||||
"dependencies": {
|
||||
"@jupyterlab/application": "^3.1.0-rc.1",
|
||||
"@jupyterlab/coreutils": "^5.1.0-rc.1",
|
||||
"@jupyterlab/docregistry": "^3.1.0-rc.1",
|
||||
"@jupyterlab/rendermime-interfaces": "^3.1.0-rc.1",
|
||||
"@jupyterlab/ui-components": "^3.1.0-rc.1",
|
||||
"@jupyterlab/application": "^3.1.0-rc.2",
|
||||
"@jupyterlab/coreutils": "^5.1.0-rc.2",
|
||||
"@jupyterlab/docregistry": "^3.1.0-rc.2",
|
||||
"@jupyterlab/rendermime-interfaces": "^3.1.0-rc.2",
|
||||
"@jupyterlab/ui-components": "^3.1.0-rc.2",
|
||||
"@lumino/algorithm": "^1.6.0",
|
||||
"@lumino/coreutils": "^1.8.0",
|
||||
"@lumino/messaging": "^1.7.0",
|
||||
@ -58,7 +58,7 @@
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.11.6",
|
||||
"@babel/preset-env": "^7.12.1",
|
||||
"@jupyterlab/testutils": "^3.1.0-rc.1",
|
||||
"@jupyterlab/testutils": "^3.1.0-rc.2",
|
||||
"@types/jest": "^26.0.10",
|
||||
"jest": "^26.4.2",
|
||||
"rimraf": "~3.0.0",
|
||||
|
@ -39,11 +39,11 @@
|
||||
"watch": "tsc -b --watch"
|
||||
},
|
||||
"dependencies": {
|
||||
"@jupyterlab/application": "^3.1.0-rc.1",
|
||||
"@jupyterlab/coreutils": "^5.1.0-rc.1",
|
||||
"@jupyterlab/docmanager": "^3.1.0-rc.1",
|
||||
"@jupyterlab/docregistry": "^3.1.0-rc.1",
|
||||
"@jupyterlab/services": "^6.1.0-rc.1",
|
||||
"@jupyterlab/application": "^3.1.0-rc.2",
|
||||
"@jupyterlab/coreutils": "^5.1.0-rc.2",
|
||||
"@jupyterlab/docmanager": "^3.1.0-rc.2",
|
||||
"@jupyterlab/docregistry": "^3.1.0-rc.2",
|
||||
"@jupyterlab/services": "^6.1.0-rc.2",
|
||||
"@lumino/algorithm": "^1.6.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
@ -39,9 +39,9 @@
|
||||
"watch": "tsc -b --watch"
|
||||
},
|
||||
"dependencies": {
|
||||
"@jupyterlab/application": "^3.1.0-rc.1",
|
||||
"@jupyterlab/apputils": "^3.1.0-rc.1",
|
||||
"@jupyterlab/mainmenu": "^3.1.0-rc.1",
|
||||
"@jupyterlab/application": "^3.1.0-rc.2",
|
||||
"@jupyterlab/apputils": "^3.1.0-rc.2",
|
||||
"@jupyterlab/mainmenu": "^3.1.0-rc.2",
|
||||
"@retrolab/ui-components": "^0.3.0-rc.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
@ -44,18 +44,18 @@
|
||||
"watch:src": "tsc -w"
|
||||
},
|
||||
"dependencies": {
|
||||
"@jupyterlab/application": "^3.1.0-rc.1",
|
||||
"@jupyterlab/apputils": "^3.1.0-rc.1",
|
||||
"@jupyterlab/coreutils": "^5.1.0-rc.1",
|
||||
"@jupyterlab/docregistry": "^3.1.0-rc.1",
|
||||
"@jupyterlab/mainmenu": "^3.1.0-rc.1",
|
||||
"@jupyterlab/notebook": "^3.1.0-rc.1",
|
||||
"@jupyterlab/application": "^3.1.0-rc.2",
|
||||
"@jupyterlab/apputils": "^3.1.0-rc.2",
|
||||
"@jupyterlab/coreutils": "^5.1.0-rc.2",
|
||||
"@jupyterlab/docregistry": "^3.1.0-rc.2",
|
||||
"@jupyterlab/mainmenu": "^3.1.0-rc.2",
|
||||
"@jupyterlab/notebook": "^3.1.0-rc.2",
|
||||
"@lumino/commands": "^1.15.0",
|
||||
"@lumino/disposable": "^1.7.0",
|
||||
"@retrolab/ui-components": "^0.3.0-rc.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@jupyterlab/builder": "^3.1.0-rc.1",
|
||||
"@jupyterlab/builder": "^3.1.0-rc.2",
|
||||
"rimraf": "~3.0.0",
|
||||
"typescript": "~4.1.3"
|
||||
},
|
||||
|
@ -39,10 +39,10 @@
|
||||
"watch": "tsc -b --watch"
|
||||
},
|
||||
"dependencies": {
|
||||
"@jupyterlab/application": "^3.1.0-rc.1",
|
||||
"@jupyterlab/apputils": "^3.1.0-rc.1",
|
||||
"@jupyterlab/docmanager": "^3.1.0-rc.1",
|
||||
"@jupyterlab/notebook": "^3.1.0-rc.1",
|
||||
"@jupyterlab/application": "^3.1.0-rc.2",
|
||||
"@jupyterlab/apputils": "^3.1.0-rc.2",
|
||||
"@jupyterlab/docmanager": "^3.1.0-rc.2",
|
||||
"@jupyterlab/notebook": "^3.1.0-rc.2",
|
||||
"@lumino/polling": "^1.6.0",
|
||||
"@lumino/widgets": "^1.23.0",
|
||||
"@retrolab/application": "^0.3.0-rc.0"
|
||||
|
@ -39,9 +39,9 @@
|
||||
"watch": "tsc -b --watch"
|
||||
},
|
||||
"dependencies": {
|
||||
"@jupyterlab/application": "^3.1.0-rc.1",
|
||||
"@jupyterlab/coreutils": "^5.1.0-rc.1",
|
||||
"@jupyterlab/terminal": "^3.1.0-rc.1",
|
||||
"@jupyterlab/application": "^3.1.0-rc.2",
|
||||
"@jupyterlab/coreutils": "^5.1.0-rc.2",
|
||||
"@jupyterlab/terminal": "^3.1.0-rc.2",
|
||||
"@lumino/algorithm": "^1.6.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
@ -39,17 +39,17 @@
|
||||
"watch": "tsc -b --watch"
|
||||
},
|
||||
"dependencies": {
|
||||
"@jupyterlab/application": "^3.1.0-rc.1",
|
||||
"@jupyterlab/apputils": "^3.1.0-rc.1",
|
||||
"@jupyterlab/coreutils": "^5.1.0-rc.1",
|
||||
"@jupyterlab/docmanager": "^3.1.0-rc.1",
|
||||
"@jupyterlab/filebrowser": "^3.1.0-rc.1",
|
||||
"@jupyterlab/mainmenu": "^3.1.0-rc.1",
|
||||
"@jupyterlab/services": "^6.1.0-rc.1",
|
||||
"@jupyterlab/settingregistry": "^3.1.0-rc.1",
|
||||
"@jupyterlab/statedb": "^3.1.0-rc.1",
|
||||
"@jupyterlab/translation": "^3.1.0-rc.1",
|
||||
"@jupyterlab/ui-components": "^3.1.0-rc.1",
|
||||
"@jupyterlab/application": "^3.1.0-rc.2",
|
||||
"@jupyterlab/apputils": "^3.1.0-rc.2",
|
||||
"@jupyterlab/coreutils": "^5.1.0-rc.2",
|
||||
"@jupyterlab/docmanager": "^3.1.0-rc.2",
|
||||
"@jupyterlab/filebrowser": "^3.1.0-rc.2",
|
||||
"@jupyterlab/mainmenu": "^3.1.0-rc.2",
|
||||
"@jupyterlab/services": "^6.1.0-rc.2",
|
||||
"@jupyterlab/settingregistry": "^3.1.0-rc.2",
|
||||
"@jupyterlab/statedb": "^3.1.0-rc.2",
|
||||
"@jupyterlab/translation": "^3.1.0-rc.2",
|
||||
"@jupyterlab/ui-components": "^3.1.0-rc.2",
|
||||
"@lumino/algorithm": "^1.6.0",
|
||||
"@lumino/commands": "^1.15.0",
|
||||
"@lumino/widgets": "^1.23.0",
|
||||
|
@ -43,14 +43,14 @@
|
||||
"watch": "tsc -b --watch"
|
||||
},
|
||||
"dependencies": {
|
||||
"@jupyterlab/ui-components": "^3.1.0-rc.1",
|
||||
"@jupyterlab/ui-components": "^3.1.0-rc.2",
|
||||
"react": "^17.0.1",
|
||||
"react-dom": "^17.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.10.2",
|
||||
"@babel/preset-env": "^7.10.2",
|
||||
"@jupyterlab/testutils": "^3.1.0-rc.1",
|
||||
"@jupyterlab/testutils": "^3.1.0-rc.2",
|
||||
"@types/jest": "^26.0.10",
|
||||
"babel-loader": "^8.0.6",
|
||||
"jest": "^26.4.2",
|
||||
|
Loading…
Reference in New Issue
Block a user