@jupyterlite/xeus 3.1.4 → 3.1.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -222,7 +222,7 @@ export class WebWorkerKernel {
222
222
  await this._remoteKernel.cd('/files');
223
223
  }
224
224
  else {
225
- await this._remoteKernel.cd(localPath);
225
+ await this._remoteKernel.cd(`/drive/${localPath}`);
226
226
  }
227
227
  }
228
228
  }
package/lib/worker.js CHANGED
@@ -112,8 +112,7 @@ export class XeusRemoteKernel {
112
112
  const sharedLibs = await bootstrapEmpackPackedEnvironment({
113
113
  empackEnvMeta,
114
114
  pkgRootUrl,
115
- Module: globalThis.Module,
116
- verbose: false
115
+ Module: globalThis.Module
117
116
  });
118
117
  // Bootstrap Python, if it's xeus-python
119
118
  if (kernelSpec.name === 'xpython') {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jupyterlite/xeus",
3
- "version": "3.1.4",
3
+ "version": "3.1.6",
4
4
  "description": "JupyterLite Xeus kernels",
5
5
  "keywords": [
6
6
  "jupyter",
@@ -36,7 +36,7 @@
36
36
  "watch:src": "tsc -w --sourceMap"
37
37
  },
38
38
  "dependencies": {
39
- "@emscripten-forge/mambajs": "^0.4.1",
39
+ "@emscripten-forge/mambajs": "^0.8.0",
40
40
  "@jupyterlab/coreutils": "^6",
41
41
  "@jupyterlab/services": "^7.3.4",
42
42
  "@jupyterlite/contents": "^0.2.0 || ^0.3.0 || ^0.4.5 || ^0.5.1",