@codingame/monaco-vscode-99f24462-c56d-5407-83fb-2ea9dd33cc8c-common
Advanced tools
Comparing version 13.0.0 to 13.1.0
{ | ||
"name": "@codingame/monaco-vscode-99f24462-c56d-5407-83fb-2ea9dd33cc8c-common", | ||
"version": "13.0.0", | ||
"version": "13.1.0", | ||
"private": false, | ||
@@ -18,16 +18,8 @@ "description": "VSCode public API plugged on the monaco editor - common package (extensions, notebook, working-copy)", | ||
"dependencies": { | ||
"@codingame/monaco-vscode-271a23cd-c7d7-5761-ae35-a923a42987b8-common": "13.0.0", | ||
"@codingame/monaco-vscode-9d05a43d-c330-5ff1-937e-fde4a3852931-common": "13.0.0", | ||
"@codingame/monaco-vscode-a4683c2b-a0d2-5112-96ba-eedc605346d2-common": "13.0.0", | ||
"@codingame/monaco-vscode-e571cbbb-526b-5d8b-92c5-a0437d2dabb3-common": "13.0.0" | ||
"@codingame/monaco-vscode-271a23cd-c7d7-5761-ae35-a923a42987b8-common": "13.1.0", | ||
"@codingame/monaco-vscode-9d05a43d-c330-5ff1-937e-fde4a3852931-common": "13.1.0", | ||
"@codingame/monaco-vscode-a4683c2b-a0d2-5112-96ba-eedc605346d2-common": "13.1.0", | ||
"@codingame/monaco-vscode-api": "13.1.0", | ||
"@codingame/monaco-vscode-e7080bda-ce3e-5243-9a35-98cd9634dbda-common": "13.1.0" | ||
}, | ||
"peerDependencies": { | ||
"@codingame/monaco-vscode-api": "13.0.0", | ||
"@codingame/monaco-vscode-notebook-service-override": "13.0.0" | ||
}, | ||
"peerDependenciesMeta": { | ||
"@codingame/monaco-vscode-notebook-service-override": { | ||
"optional": true | ||
} | ||
}, | ||
"exports": { | ||
@@ -34,0 +26,0 @@ ".": { |
@@ -11,3 +11,3 @@ import { VSBufferReadableStream } from "@codingame/monaco-vscode-api/vscode/vs/base/common/buffer"; | ||
import { IRevertOptions, ISaveOptions, IUntypedEditorInput } from "@codingame/monaco-vscode-api/vscode/vs/workbench/common/editor"; | ||
import { EditorModel } from "@codingame/monaco-vscode-e571cbbb-526b-5d8b-92c5-a0437d2dabb3-common/vscode/vs/workbench/common/editor/editorModel"; | ||
import { EditorModel } from "@codingame/monaco-vscode-e7080bda-ce3e-5243-9a35-98cd9634dbda-common/vscode/vs/workbench/common/editor/editorModel"; | ||
import { NotebookTextModel } from "@codingame/monaco-vscode-notebook-service-override/vscode/vs/workbench/contrib/notebook/common/model/notebookTextModel"; | ||
@@ -14,0 +14,0 @@ import { INotebookEditorModel, INotebookLoadOptions, IResolvedNotebookEditorModel } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/notebook/common/notebookCommon"; |
@@ -11,3 +11,3 @@ | ||
import { ITelemetryService } from '@codingame/monaco-vscode-api/vscode/vs/platform/telemetry/common/telemetry.service'; | ||
import { EditorModel } from '@codingame/monaco-vscode-e571cbbb-526b-5d8b-92c5-a0437d2dabb3-common/vscode/vs/workbench/common/editor/editorModel'; | ||
import { EditorModel } from '@codingame/monaco-vscode-e7080bda-ce3e-5243-9a35-98cd9634dbda-common/vscode/vs/workbench/common/editor/editorModel'; | ||
import { NotebookCellsChangeType, NotebookSetting } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/notebook/common/notebookCommon'; | ||
@@ -14,0 +14,0 @@ import { INotebookLoggingService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/notebook/common/notebookLoggingService.service'; |
@@ -409,3 +409,3 @@ | ||
return this.progressService.withProgress({ | ||
title: ( localize(12090, "Saving '{0}'", this.name)), | ||
title: ( localize(12108, "Saving '{0}'", this.name)), | ||
location: ProgressLocation.Window, | ||
@@ -462,3 +462,3 @@ cancellable: true, | ||
this.inErrorMode = false; | ||
progress.report({ message: ( localize(12091, "Writing into file...")) }); | ||
progress.report({ message: ( localize(12109, "Writing into file...")) }); | ||
this.trace(`doSave(${versionId}) - before write()`); | ||
@@ -540,8 +540,8 @@ const lastResolvedFileStat = assertIsDefined(this.lastResolvedFileStat); | ||
message = ( localize( | ||
12092, | ||
12110, | ||
"Failed to save '{0}': The content of the file is newer. Do you want to overwrite the file with your changes?", | ||
this.name | ||
)); | ||
primaryActions.push(toAction({ id: 'fileWorkingCopy.overwrite', label: ( localize(12093, "Overwrite")), run: () => this.save({ ...options, ignoreModifiedSince: true, reason: SaveReason.EXPLICIT }) })); | ||
primaryActions.push(toAction({ id: 'fileWorkingCopy.revert', label: ( localize(12094, "Revert")), run: () => this.revert() })); | ||
primaryActions.push(toAction({ id: 'fileWorkingCopy.overwrite', label: ( localize(12111, "Overwrite")), run: () => this.save({ ...options, ignoreModifiedSince: true, reason: SaveReason.EXPLICIT }) })); | ||
primaryActions.push(toAction({ id: 'fileWorkingCopy.revert', label: ( localize(12112, "Revert")), run: () => this.revert() })); | ||
} | ||
@@ -560,4 +560,4 @@ else { | ||
label: triedToUnlock ? | ||
isWindows ? ( localize(12095, "Overwrite as Admin...")) : ( localize(12096, "Overwrite as Sudo...")) : | ||
isWindows ? ( localize(12097, "Retry as Admin...")) : ( localize(12098, "Retry as Sudo...")), | ||
isWindows ? ( localize(12113, "Overwrite as Admin...")) : ( localize(12114, "Overwrite as Sudo...")) : | ||
isWindows ? ( localize(12115, "Retry as Admin...")) : ( localize(12116, "Retry as Sudo...")), | ||
run: () => { | ||
@@ -569,10 +569,10 @@ this.save({ ...options, writeElevated: true, writeUnlock: triedToUnlock, reason: SaveReason.EXPLICIT }); | ||
else if (isWriteLocked) { | ||
primaryActions.push(toAction({ id: 'fileWorkingCopy.unlock', label: ( localize(12093, "Overwrite")), run: () => this.save({ ...options, writeUnlock: true, reason: SaveReason.EXPLICIT }) })); | ||
primaryActions.push(toAction({ id: 'fileWorkingCopy.unlock', label: ( localize(12111, "Overwrite")), run: () => this.save({ ...options, writeUnlock: true, reason: SaveReason.EXPLICIT }) })); | ||
} | ||
else { | ||
primaryActions.push(toAction({ id: 'fileWorkingCopy.retry', label: ( localize(12099, "Retry")), run: () => this.save({ ...options, reason: SaveReason.EXPLICIT }) })); | ||
primaryActions.push(toAction({ id: 'fileWorkingCopy.retry', label: ( localize(12117, "Retry")), run: () => this.save({ ...options, reason: SaveReason.EXPLICIT }) })); | ||
} | ||
primaryActions.push(toAction({ | ||
id: 'fileWorkingCopy.saveAs', | ||
label: ( localize(12100, "Save As...")), | ||
label: ( localize(12118, "Save As...")), | ||
run: async () => { | ||
@@ -588,3 +588,3 @@ const editor = this.workingCopyEditorService.findEditor(this); | ||
})); | ||
primaryActions.push(toAction({ id: 'fileWorkingCopy.revert', label: ( localize(12094, "Revert")), run: () => this.revert() })); | ||
primaryActions.push(toAction({ id: 'fileWorkingCopy.revert', label: ( localize(12112, "Revert")), run: () => this.revert() })); | ||
if (isWriteLocked) { | ||
@@ -594,3 +594,3 @@ if (triedToUnlock && canSaveElevated) { | ||
( localize( | ||
12101, | ||
12119, | ||
"Failed to save '{0}': File is read-only. Select 'Overwrite as Admin' to retry as administrator.", | ||
@@ -600,3 +600,3 @@ this.name | ||
( localize( | ||
12102, | ||
12120, | ||
"Failed to save '{0}': File is read-only. Select 'Overwrite as Sudo' to retry as superuser.", | ||
@@ -608,3 +608,3 @@ this.name | ||
message = ( localize( | ||
12103, | ||
12121, | ||
"Failed to save '{0}': File is read-only. Select 'Overwrite' to attempt to make it writeable.", | ||
@@ -618,3 +618,3 @@ this.name | ||
( localize( | ||
12104, | ||
12122, | ||
"Failed to save '{0}': Insufficient permissions. Select 'Retry as Admin' to retry as administrator.", | ||
@@ -624,3 +624,3 @@ this.name | ||
( localize( | ||
12105, | ||
12123, | ||
"Failed to save '{0}': Insufficient permissions. Select 'Retry as Sudo' to retry as superuser.", | ||
@@ -632,3 +632,3 @@ this.name | ||
message = ( localize( | ||
12106, | ||
12124, | ||
"Failed to save '{0}': {1}", | ||
@@ -635,0 +635,0 @@ this.name, |
5
70637
+ Added@codingame/monaco-vscode-e7080bda-ce3e-5243-9a35-98cd9634dbda-common@13.1.0
+ Added@codingame/monaco-vscode-0139c6af-2375-559c-af57-b738f2fd6d8e-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-039b5553-0838-562a-97c2-30d6e54a7b42-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-0b087f42-a5a3-5eb9-9bfd-1eebc1bba163-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-0c06bfba-d24d-5c4d-90cd-b40cefb7f811-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-0cc5da60-f921-59b9-bd8c-a018e93c0a6f-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-15626ec7-b165-51e1-8caf-7bcc2ae9b95a-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-1cc4ea0a-c5b6-54ed-bb60-078a99119b55-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-219d9a5f-b446-507b-a188-1178a0867c75-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-256d5b78-0649-50e9-8354-2807f95f68f4-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-271a23cd-c7d7-5761-ae35-a923a42987b8-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-2e67e044-0db9-5fa6-8bd1-3737a7d586d4-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-2f06fe84-148e-5e6b-a7ca-c7989c5f128a-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-3607c442-ae7a-594b-b840-038378c24fef-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-3cf6a388-482f-5484-a806-0525ad9ad8af-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-40cada32-7e9c-528a-81fc-766e4da54147-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-411e0589-fa79-504b-b32c-80a88847b23a-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-42931eb9-e564-530c-bafc-fa23ab43a070-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-464d4abe-0937-5367-af84-1b9279e14ea3-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-47923ab1-c4c8-58b5-89ac-fa1b998eb5dd-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-4a36e358-d94d-55e0-86ee-3bcd543d9d3f-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-4ead9d5f-54da-5c5a-b093-32be4a84d711-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-5108c2c9-4ada-52d8-8c4b-fe03b3160e71-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-56402b83-4a60-5b15-86f9-71fe99c32744-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-5945a5e2-a66c-5a82-bd2c-1965724b29eb-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-65619f8f-0eab-5d8b-855a-43b6353fe527-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-6845754f-e617-5ed9-8aaa-6ca3653a9532-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-7443a901-21f6-577a-9674-42893b997ee0-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-7bbc9e7d-eeae-55fc-8bf9-dc2f66e0dc73-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-7f39b6f1-3542-5430-8760-0f404d7a7cee-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-82e231ca-6ed7-5920-b2b8-1874ccc0be07-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-897bebad-39df-57cb-8a57-36a271d038be-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-8ccb7637-50ea-5359-97bf-00015d7fe567-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-972e8507-3a64-566d-8bc0-b78993998562-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-9a1a5840-af83-5d07-a156-ba32a36c5c4b-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-9d05a43d-c330-5ff1-937e-fde4a3852931-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-9e888134-1a6f-58d9-b0e6-0fc047448366-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-9ee79c1a-3f03-568b-8eac-b02513a98b68-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-a2719803-af40-5ae9-a29f-8a2231c33056-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-a4683c2b-a0d2-5112-96ba-eedc605346d2-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-a7c9ae3c-16d2-5d17-86b2-981be7094566-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-abed5a84-8a82-5f84-9412-88a736235bae-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-api@13.1.0(transitive)
+ Added@codingame/monaco-vscode-b4efa70b-52b9-5670-ab5c-f10b10b6834e-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-base-service-override@13.1.0(transitive)
+ Added@codingame/monaco-vscode-bd6ad8b7-9db3-51a8-9895-0046508c029d-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-be8ddbb5-094a-5657-b1cc-fe106c94c632-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-bf94ddb5-e436-506a-9763-5ab86b642508-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-c3c61c00-c254-5856-9dc9-d7929c1f9062-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-c465110a-57c0-59d7-a6b2-be0a4db7e517-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-cc9ccbec-e2a1-599d-84ae-46f5efc666e3-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-cea4d01f-6526-5c2f-8b09-b168fead499f-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-d609a7d3-bf87-551a-884f-550a8b327ec5-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-d6e33d82-c101-549d-a885-0807ab3e0cfb-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-d7f659f5-da33-5ea8-a3b8-9b94f2cf5f33-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-d8236b3b-b91a-522d-89f4-94d70a546f6a-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-d987325e-3e05-53aa-b9ff-6f97476f64db-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-e7080bda-ce3e-5243-9a35-98cd9634dbda-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-ea14e352-8f1c-5569-b79a-8a96a53e8abe-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-eb7d5efd-2e60-59f8-9ba4-9a8ae8cb2957-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-eba0b9b3-174c-5dae-9867-a37810ca1808-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-environment-service-override@13.1.0(transitive)
+ Added@codingame/monaco-vscode-extensions-service-override@13.1.0(transitive)
+ Added@codingame/monaco-vscode-f48982c4-9e82-55e2-b800-20e6d1e6096f-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-fab30422-b487-5f4e-8d30-8b4d266e3fcd-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-fc42f049-7883-579d-bb0b-2aa1010a19a8-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-fc985c90-0334-5b62-88bc-73e2efa0b80b-common@13.1.0(transitive)
+ Added@codingame/monaco-vscode-files-service-override@13.1.0(transitive)
+ Added@codingame/monaco-vscode-host-service-override@13.1.0(transitive)
+ Added@codingame/monaco-vscode-layout-service-override@13.1.0(transitive)
+ Added@codingame/monaco-vscode-quickaccess-service-override@13.1.0(transitive)
- Removed@codingame/monaco-vscode-e571cbbb-526b-5d8b-92c5-a0437d2dabb3-common@13.0.0
- Removed@codingame/monaco-vscode-0139c6af-2375-559c-af57-b738f2fd6d8e-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-039b5553-0838-562a-97c2-30d6e54a7b42-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-0b087f42-a5a3-5eb9-9bfd-1eebc1bba163-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-0c06bfba-d24d-5c4d-90cd-b40cefb7f811-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-0cc5da60-f921-59b9-bd8c-a018e93c0a6f-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-0cd5242b-7b61-5f66-ac25-ffa40baf8e8f-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-15626ec7-b165-51e1-8caf-7bcc2ae9b95a-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-1ae7d696-d960-5ac6-97a3-9fe7c8c3a793-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-1cc4ea0a-c5b6-54ed-bb60-078a99119b55-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-1d9dbcb3-6f53-58ad-b0a4-92b1ef1fd6a8-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-219d9a5f-b446-507b-a188-1178a0867c75-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-22790577-4553-50b6-978d-0acc75c394cc-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-256d5b78-0649-50e9-8354-2807f95f68f4-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-271a23cd-c7d7-5761-ae35-a923a42987b8-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-2e67e044-0db9-5fa6-8bd1-3737a7d586d4-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-2f06fe84-148e-5e6b-a7ca-c7989c5f128a-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-3607c442-ae7a-594b-b840-038378c24fef-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-3a00040f-b81b-50bc-88da-35f611c0bd1e-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-3cf6a388-482f-5484-a806-0525ad9ad8af-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-3dd5b442-bfbc-5b1d-8f4a-7567530c75f5-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-40cada32-7e9c-528a-81fc-766e4da54147-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-42931eb9-e564-530c-bafc-fa23ab43a070-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-464d4abe-0937-5367-af84-1b9279e14ea3-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-47923ab1-c4c8-58b5-89ac-fa1b998eb5dd-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-4a36e358-d94d-55e0-86ee-3bcd543d9d3f-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-4e719823-8b6e-554d-b01a-5670b53fbb19-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-4ead9d5f-54da-5c5a-b093-32be4a84d711-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-5108c2c9-4ada-52d8-8c4b-fe03b3160e71-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-5452e2b7-9081-5f95-839b-4ab3544ce28f-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-56402b83-4a60-5b15-86f9-71fe99c32744-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-5945a5e2-a66c-5a82-bd2c-1965724b29eb-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-65619f8f-0eab-5d8b-855a-43b6353fe527-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-6845754f-e617-5ed9-8aaa-6ca3653a9532-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-695440c8-a687-5594-b476-bbc7b36bafe9-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-6f9bc782-77e0-5716-93bd-b05210c768c5-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-7bbc9e7d-eeae-55fc-8bf9-dc2f66e0dc73-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-7f39b6f1-3542-5430-8760-0f404d7a7cee-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-82e231ca-6ed7-5920-b2b8-1874ccc0be07-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-88aa9a78-75f5-5aaa-89e9-bbdd580b3b5c-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-897bebad-39df-57cb-8a57-36a271d038be-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-8ccb7637-50ea-5359-97bf-00015d7fe567-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-9a1a5840-af83-5d07-a156-ba32a36c5c4b-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-9d05a43d-c330-5ff1-937e-fde4a3852931-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-9e888134-1a6f-58d9-b0e6-0fc047448366-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-9ee79c1a-3f03-568b-8eac-b02513a98b68-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-a2719803-af40-5ae9-a29f-8a2231c33056-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-a4683c2b-a0d2-5112-96ba-eedc605346d2-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-a7c9ae3c-16d2-5d17-86b2-981be7094566-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-abed5a84-8a82-5f84-9412-88a736235bae-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-api@13.0.0(transitive)
- Removed@codingame/monaco-vscode-b1e8558d-1726-5299-bc75-e43ee6d1a124-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-b4efa70b-52b9-5670-ab5c-f10b10b6834e-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-base-service-override@13.0.0(transitive)
- Removed@codingame/monaco-vscode-bd6ad8b7-9db3-51a8-9895-0046508c029d-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-be8ddbb5-094a-5657-b1cc-fe106c94c632-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-bf94ddb5-e436-506a-9763-5ab86b642508-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-c3c61c00-c254-5856-9dc9-d7929c1f9062-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-c465110a-57c0-59d7-a6b2-be0a4db7e517-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-cc9ccbec-e2a1-599d-84ae-46f5efc666e3-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-cea4d01f-6526-5c2f-8b09-b168fead499f-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-d609a7d3-bf87-551a-884f-550a8b327ec5-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-d6e33d82-c101-549d-a885-0807ab3e0cfb-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-d7f659f5-da33-5ea8-a3b8-9b94f2cf5f33-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-d8236b3b-b91a-522d-89f4-94d70a546f6a-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-d987325e-3e05-53aa-b9ff-6f97476f64db-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-e28ac690-06d5-5ee9-92d1-02df70296354-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-e4d0fd26-1b26-5583-b3f7-582e08d7b389-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-e571cbbb-526b-5d8b-92c5-a0437d2dabb3-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-ea14e352-8f1c-5569-b79a-8a96a53e8abe-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-eb7d5efd-2e60-59f8-9ba4-9a8ae8cb2957-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-eba0b9b3-174c-5dae-9867-a37810ca1808-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-environment-service-override@13.0.0(transitive)
- Removed@codingame/monaco-vscode-extensions-service-override@13.0.0(transitive)
- Removed@codingame/monaco-vscode-f48982c4-9e82-55e2-b800-20e6d1e6096f-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-fab30422-b487-5f4e-8d30-8b4d266e3fcd-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-fc42f049-7883-579d-bb0b-2aa1010a19a8-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-fc985c90-0334-5b62-88bc-73e2efa0b80b-common@13.0.0(transitive)
- Removed@codingame/monaco-vscode-files-service-override@13.0.0(transitive)
- Removed@codingame/monaco-vscode-host-service-override@13.0.0(transitive)
- Removed@codingame/monaco-vscode-layout-service-override@13.0.0(transitive)
- Removed@codingame/monaco-vscode-notebook-service-override@13.0.0(transitive)
- Removed@codingame/monaco-vscode-quickaccess-service-override@13.0.0(transitive)
Updated@codingame/monaco-vscode-271a23cd-c7d7-5761-ae35-a923a42987b8-common@13.1.0
Updated@codingame/monaco-vscode-9d05a43d-c330-5ff1-937e-fde4a3852931-common@13.1.0
Updated@codingame/monaco-vscode-a4683c2b-a0d2-5112-96ba-eedc605346d2-common@13.1.0