@codingame/monaco-vscode-debug-service-override 26.0.0 → 26.1.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codingame/monaco-vscode-debug-service-override",
|
|
3
|
-
"version": "26.
|
|
3
|
+
"version": "26.1.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "VSCode public API plugged on the monaco editor - debug service-override",
|
|
6
6
|
"keywords": [],
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
},
|
|
16
16
|
"type": "module",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@codingame/monaco-vscode-api": "26.
|
|
18
|
+
"@codingame/monaco-vscode-api": "26.1.0"
|
|
19
19
|
},
|
|
20
20
|
"main": "index.js",
|
|
21
21
|
"module": "index.js",
|
|
@@ -8,7 +8,7 @@ import { INotebookKernelService } from '@codingame/monaco-vscode-api/vscode/vs/w
|
|
|
8
8
|
import { INotebookService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/notebook/common/notebookService.service';
|
|
9
9
|
|
|
10
10
|
const COPY_NOTEBOOK_VARIABLE_VALUE_ID = "workbench.debug.viewlet.action.copyWorkspaceVariableValue";
|
|
11
|
-
const COPY_NOTEBOOK_VARIABLE_VALUE_LABEL = ( localize(
|
|
11
|
+
const COPY_NOTEBOOK_VARIABLE_VALUE_LABEL = ( localize(9639, "Copy Value"));
|
|
12
12
|
registerAction2(class extends Action2 {
|
|
13
13
|
constructor() {
|
|
14
14
|
super({
|
|
@@ -28,7 +28,7 @@ registerAction2(class extends Action2 {
|
|
|
28
28
|
constructor() {
|
|
29
29
|
super({
|
|
30
30
|
id: "_executeNotebookVariableProvider",
|
|
31
|
-
title: ( localize(
|
|
31
|
+
title: ( localize(9640, "Execute Notebook Variable Provider")),
|
|
32
32
|
f1: false
|
|
33
33
|
});
|
|
34
34
|
}
|