@jupyterlite/terminal 1.2.0 → 1.3.1
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.
- package/README.md +9 -8
- package/lib/client.js +1 -0
- package/package.json +2 -2
- package/src/client.ts +1 -0
package/README.md
CHANGED
|
@@ -5,8 +5,6 @@
|
|
|
5
5
|
|
|
6
6
|
A terminal for JupyterLite.
|
|
7
7
|
|
|
8
|
-
⚠️ This extension is still in development and not yet ready for general use. ⚠️
|
|
9
|
-
|
|
10
8
|

|
|
11
9
|
|
|
12
10
|
## Requirements
|
|
@@ -52,12 +50,15 @@ Each `jupyterlite-terminal` release is built against a specific version of `cock
|
|
|
52
50
|
include imports from both `jupyterlite-terminal` and `cockle`, such as if you are implementing
|
|
53
51
|
`cockle` external commands, you should ensure that you are using the correct version combination.
|
|
54
52
|
|
|
55
|
-
| `jupyterlite-terminal` | `cockle` | `jupyterlite-core`
|
|
56
|
-
| ---------------------- | -------- |
|
|
57
|
-
| 1.1
|
|
58
|
-
| 1.0
|
|
59
|
-
| 1.
|
|
60
|
-
|
|
|
53
|
+
| `jupyterlite-terminal` | `cockle` | `jupyterlite-core` | Release date |
|
|
54
|
+
| ---------------------- | -------- | ----------------------- | ------------ |
|
|
55
|
+
| 1.3.1 | 1.4.1 | >= 0.7, < 0.8, != 0.7.4 | 2026-03-25 |
|
|
56
|
+
| 1.3.0 | 1.4.0 | >= 0.7, < 0.8 | 2026-03-02 |
|
|
57
|
+
| 1.2.0 | 1.3.0 | >= 0.7, < 0.8 | 2025-12-03 |
|
|
58
|
+
| 1.1.0 | 1.2.0 | >= 0.6, < 0.8 | 2025-10-27 |
|
|
59
|
+
| 1.0.1 | 1.0.0 | >= 0.6, < 0.8 | 2025-09-03 |
|
|
60
|
+
| 1.0.0 | 1.0.0 | >= 0.6, < 0.7 | 2025-08-11 |
|
|
61
|
+
| 0.2.2 | 0.1.3 | >= 0.6, < 0.7 | 2025-06-27 |
|
|
61
62
|
|
|
62
63
|
## Contributing
|
|
63
64
|
|
package/lib/client.js
CHANGED
|
@@ -38,6 +38,7 @@ export class LiteTerminalAPIClient {
|
|
|
38
38
|
const { baseUrl, wsUrl } = this.serverSettings;
|
|
39
39
|
const shell = new Shell({
|
|
40
40
|
mountpoint: '/drive',
|
|
41
|
+
cwd: options === null || options === void 0 ? void 0 : options.cwd,
|
|
41
42
|
baseUrl,
|
|
42
43
|
wasmBaseUrl: URLExt.join(baseUrl, 'extensions/@jupyterlite/terminal/static/wasm/'),
|
|
43
44
|
browsingContextId: this._browsingContextId,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlite/terminal",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.1",
|
|
4
4
|
"description": "A terminal for JupyterLite",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"jupyter",
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
"@jupyterlab/services": "^7.5.0",
|
|
66
66
|
"@jupyterlab/settingregistry": "^4.5.0",
|
|
67
67
|
"@jupyterlite/apputils": "^0.7.0",
|
|
68
|
-
"@jupyterlite/cockle": "^1.
|
|
68
|
+
"@jupyterlite/cockle": "^1.4.1",
|
|
69
69
|
"@jupyterlite/services": "^0.7.0",
|
|
70
70
|
"@lumino/coreutils": "^2.2.1",
|
|
71
71
|
"@lumino/signaling": "^2.1.4",
|
package/src/client.ts
CHANGED