@jupyter-notebook/terminal-extension 7.0.6 → 7.1.0-alpha.0
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/lib/index.js +2 -0
- package/package.json +5 -5
package/lib/index.js
CHANGED
|
@@ -10,6 +10,7 @@ import { find } from '@lumino/algorithm';
|
|
|
10
10
|
*/
|
|
11
11
|
const opener = {
|
|
12
12
|
id: '@jupyter-notebook/terminal-extension:opener',
|
|
13
|
+
description: 'A plugin to open terminals in a new tab.',
|
|
13
14
|
requires: [IRouter, ITerminalTracker],
|
|
14
15
|
autoStart: true,
|
|
15
16
|
activate: (app, router, tracker) => {
|
|
@@ -41,6 +42,7 @@ const opener = {
|
|
|
41
42
|
*/
|
|
42
43
|
const redirect = {
|
|
43
44
|
id: '@jupyter-notebook/terminal-extension:redirect',
|
|
45
|
+
description: 'Open terminals in a new tab.',
|
|
44
46
|
requires: [ITerminalTracker],
|
|
45
47
|
optional: [INotebookPathOpener],
|
|
46
48
|
autoStart: true,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyter-notebook/terminal-extension",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.1.0-alpha.0",
|
|
4
4
|
"description": "Jupyter Notebook - Terminal Extension",
|
|
5
5
|
"homepage": "https://github.com/jupyter/notebook",
|
|
6
6
|
"bugs": {
|
|
@@ -38,10 +38,10 @@
|
|
|
38
38
|
"watch": "tsc -b --watch"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@jupyter-notebook/application": "^7.0.
|
|
42
|
-
"@jupyterlab/application": "^4.0.
|
|
43
|
-
"@jupyterlab/coreutils": "^6.0.
|
|
44
|
-
"@jupyterlab/terminal": "^4.0.
|
|
41
|
+
"@jupyter-notebook/application": "^7.1.0-alpha.0",
|
|
42
|
+
"@jupyterlab/application": "^4.1.0-alpha.2",
|
|
43
|
+
"@jupyterlab/coreutils": "^6.1.0-alpha.2",
|
|
44
|
+
"@jupyterlab/terminal": "^4.1.0-alpha.2",
|
|
45
45
|
"@lumino/algorithm": "^2.0.1"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|