Skip to content

Commit 50f7fce

Browse files
author
Itai Stopel
committed
Seems to be working on jupyterlab version 2.0.2
1 parent ca55830 commit 50f7fce

File tree

4 files changed

+707
-581
lines changed

4 files changed

+707
-581
lines changed

package.json

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -31,18 +31,19 @@
3131
"watch": "tsc -w"
3232
},
3333
"dependencies": {
34-
"@jupyterlab/application": "^1.0.0",
35-
"@jupyterlab/apputils": "^1.0.0",
36-
"@jupyterlab/coreutils": "^3.0.0",
37-
"@jupyterlab/docmanager": "^1.0.0",
38-
"@jupyterlab/filebrowser": "^1.0.1",
39-
"@jupyterlab/services": "^4.0.0",
40-
"@phosphor/messaging": "^1.2.3",
41-
"@phosphor/widgets": "^1.8.1"
34+
"@jupyterlab/application": "^2.0.2",
35+
"@jupyterlab/apputils": "^2.0.2",
36+
"@jupyterlab/coreutils": "^4.0.2",
37+
"@jupyterlab/settingregistry": "^2.0.1",
38+
"@jupyterlab/docmanager": "^2.0.2",
39+
"@jupyterlab/filebrowser": "^2.0.2",
40+
"@jupyterlab/services": "^5.0.2",
41+
"@lumino/messaging": "^1.3.3",
42+
"@lumino/widgets": "^1.11.1"
4243
},
4344
"devDependencies": {
4445
"rimraf": "^2.6.1",
45-
"typescript": "~3.5.2"
46+
"typescript": "~3.7.2"
4647
},
4748
"jupyterlab": {
4849
"extension": true,

src/index.ts

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
import { ILabShell, JupyterFrontEnd, JupyterFrontEndPlugin } from "@jupyterlab/application";
22
import { ICommandPalette } from "@jupyterlab/apputils";
3-
import { ISettingRegistry, URLExt, PathExt } from "@jupyterlab/coreutils";
3+
import { URLExt, PathExt } from "@jupyterlab/coreutils";
44
import { IDocumentManager } from "@jupyterlab/docmanager";
55
import { ServerConnection } from "@jupyterlab/services";
6+
import { ISettingRegistry } from "@jupyterlab/settingregistry";
67
import { FileBrowser, IFileBrowserFactory } from '@jupyterlab/filebrowser';
7-
import { CommandRegistry } from "@phosphor/commands";
8-
import { ReadonlyJSONObject } from "@phosphor/coreutils";
9-
import { Message } from "@phosphor/messaging";
10-
import { ISignal, Signal } from "@phosphor/signaling";
11-
import { CommandPalette } from "@phosphor/widgets";
8+
import { CommandRegistry } from "@lumino/commands";
9+
import { ReadonlyJSONObject } from "@lumino/coreutils";
10+
import { Message } from "@lumino/messaging";
11+
import { ISignal, Signal } from "@lumino/signaling";
12+
import { CommandPalette } from "@lumino/widgets";
1213
import "../style/index.css";
1314

1415
/** Structure of the JSON response from the server */

tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"compilerOptions": {
3+
"allowSyntheticDefaultImports": true,
34
"declaration": true,
45
"lib": ["es2017", "dom"],
56
"module": "commonjs",

0 commit comments

Comments
 (0)