New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@codingame/monaco-vscode-99f24462-c56d-5407-83fb-2ea9dd33cc8c-common

Package Overview
Dependencies
Maintainers
6
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@codingame/monaco-vscode-99f24462-c56d-5407-83fb-2ea9dd33cc8c-common - npm Package Compare versions

Comparing version 13.0.0 to 13.1.0

20

package.json
{
"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,

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc