@codingame/monaco-vscode-edit-sessions-service-override 2.2.1 → 3.0.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-edit-sessions-service-override",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"keywords": [],
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "CodinGame",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"module": "index.js",
|
|
19
19
|
"types": "index.d.ts",
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"vscode": "npm:@codingame/monaco-vscode-api@
|
|
21
|
+
"vscode": "npm:@codingame/monaco-vscode-api@3.0.0",
|
|
22
22
|
"vscode-marked": "npm:marked@=3.0.2"
|
|
23
23
|
}
|
|
24
24
|
}
|
|
@@ -85,11 +85,11 @@ const openLocalFolderCommand = {
|
|
|
85
85
|
};
|
|
86
86
|
const showOutputChannelCommand = {
|
|
87
87
|
id: 'workbench.editSessions.actions.showOutputChannel',
|
|
88
|
-
title:
|
|
88
|
+
title: ( localize2WithPath(
|
|
89
89
|
'vs/workbench/contrib/editSessions/browser/editSessions.contribution',
|
|
90
90
|
'show log',
|
|
91
|
-
|
|
92
|
-
)),
|
|
91
|
+
"Show Log"
|
|
92
|
+
)),
|
|
93
93
|
category: EDIT_SESSION_SYNC_CATEGORY
|
|
94
94
|
};
|
|
95
95
|
const installAdditionalContinueOnOptionsCommand = {
|
|
@@ -1042,7 +1042,7 @@ class ContinueEditSessionItem {
|
|
|
1042
1042
|
}
|
|
1043
1043
|
}
|
|
1044
1044
|
}
|
|
1045
|
-
const continueEditSessionExtPoint =
|
|
1045
|
+
const continueEditSessionExtPoint = ExtensionsRegistry.registerExtensionPoint({
|
|
1046
1046
|
extensionPoint: 'continueEditSession',
|
|
1047
1047
|
jsonSchema: {
|
|
1048
1048
|
description: ( localizeWithPath(
|
|
@@ -1106,7 +1106,7 @@ const continueEditSessionExtPoint = ( ExtensionsRegistry.registerExtensionPoint(
|
|
|
1106
1106
|
required: ['command']
|
|
1107
1107
|
}
|
|
1108
1108
|
}
|
|
1109
|
-
})
|
|
1109
|
+
});
|
|
1110
1110
|
const workbenchRegistry = ( Registry.as(Extensions$1.Workbench));
|
|
1111
1111
|
workbenchRegistry.registerWorkbenchContribution(EditSessionsContribution, 3 );
|
|
1112
1112
|
( Registry.as(Extensions$2.Configuration)).registerConfiguration({
|