Skip to content

Commit

Permalink
Update jupyterlite to 0.4.0 and cockle to 0.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
ianthomas23 committed Jul 30, 2024
1 parent 1841226 commit 40f2fff
Show file tree
Hide file tree
Showing 3 changed files with 112 additions and 123 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@
"@jupyterlab/services": "^7.2.0",
"@jupyterlab/terminal": "^4.2.0",
"@jupyterlab/terminal-extension": "^4.2.0",
"@jupyterlite/cockle": "^0.0.4",
"@jupyterlite/contents": "^0.3.0 || ^0.4.0-beta.0",
"@jupyterlite/server": "^0.3.0 || ^0.4.0-beta.0",
"@jupyterlite/cockle": "^0.0.5",
"@jupyterlite/contents": "^0.4.0",
"@jupyterlite/server": "^0.4.0",
"@lumino/coreutils": "^2.1.2",
"comlink": "^4.4.1",
"mock-socket": "^9.3.1"
Expand Down
5 changes: 4 additions & 1 deletion src/worker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ class WorkerTerminal implements IWorkerTerminal {
}

async start(): Promise<void> {
this._shell = new Shell(this.output.bind(this), this._mountpoint);
this._shell = new Shell({
mountpoint: this._mountpoint,
outputCallback: this.output.bind(this),
});
const { FS, PATH, ERRNO_CODES } = await this._shell.initFilesystem();

if (this._wantDriveFS) {
Expand Down
Loading

0 comments on commit 40f2fff

Please sign in to comment.