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

@codingame/monaco-vscode-files-service-override

Package Overview
Dependencies
Maintainers
6
Versions
149
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@codingame/monaco-vscode-files-service-override - npm Package Compare versions

Comparing version 10.0.1 to 10.0.2

4

package.json
{
"name": "@codingame/monaco-vscode-files-service-override",
"version": "10.0.1",
"version": "10.0.2",
"keywords": [],

@@ -29,4 +29,4 @@ "author": {

"dependencies": {
"vscode": "npm:@codingame/monaco-vscode-api@10.0.1"
"vscode": "npm:@codingame/monaco-vscode-api@10.0.2"
}
}

@@ -13,9 +13,9 @@ import { Throttler } from 'vscode/vscode/vs/base/common/async';

const ERR_FILE_NOT_FOUND = createFileSystemProviderError(( localize(738, "File does not exist")), FileSystemProviderErrorCode.FileNotFound);
const ERR_FILE_IS_DIR = createFileSystemProviderError(( localize(739, "File is Directory")), FileSystemProviderErrorCode.FileIsADirectory);
const ERR_FILE_NOT_DIR = createFileSystemProviderError(( localize(740, "File is not a directory")), FileSystemProviderErrorCode.FileNotADirectory);
const ERR_DIR_NOT_EMPTY = createFileSystemProviderError(( localize(741, "Directory is not empty")), FileSystemProviderErrorCode.Unknown);
const ERR_FILE_EXCEEDS_STORAGE_QUOTA = createFileSystemProviderError(( localize(742, "File exceeds available storage quota")), FileSystemProviderErrorCode.FileExceedsStorageQuota);
const ERR_FILE_NOT_FOUND = createFileSystemProviderError(( localize(740, "File does not exist")), FileSystemProviderErrorCode.FileNotFound);
const ERR_FILE_IS_DIR = createFileSystemProviderError(( localize(741, "File is Directory")), FileSystemProviderErrorCode.FileIsADirectory);
const ERR_FILE_NOT_DIR = createFileSystemProviderError(( localize(742, "File is not a directory")), FileSystemProviderErrorCode.FileNotADirectory);
const ERR_DIR_NOT_EMPTY = createFileSystemProviderError(( localize(743, "Directory is not empty")), FileSystemProviderErrorCode.Unknown);
const ERR_FILE_EXCEEDS_STORAGE_QUOTA = createFileSystemProviderError(( localize(744, "File exceeds available storage quota")), FileSystemProviderErrorCode.FileExceedsStorageQuota);
const ERR_UNKNOWN_INTERNAL = (message) => createFileSystemProviderError(( localize(
743,
745,
"Internal error occurred in IndexedDB File System Provider. ({0})",

@@ -22,0 +22,0 @@ message

@@ -37,3 +37,3 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';

throw ( (new Error(localize(
678,
712,
"Unable to create folder '{0}' that already exists but is not a directory",

@@ -153,3 +153,3 @@ resourceForError(directory)

throw ( (new FileOperationError(localize(
679,
713,
"Unable to resolve filesystem provider with relative file path '{0}'",

@@ -164,3 +164,3 @@ this.resourceForError(resource)

error.message = ( localize(
680,
714,
"ENOPRO: No file system provider found for resource '{0}'",

@@ -198,3 +198,3 @@ (resource.toString())

throw ( (new FileOperationError(localize(
681,
715,
"Unable to resolve nonexistent file '{0}'",

@@ -310,3 +310,3 @@ this.resourceForError(resource)

throw ( (new FileOperationError(localize(
682,
716,
"Unable to create file '{0}' that already exists when overwrite flag is not set",

@@ -369,3 +369,3 @@ this.resourceForError(resource)

throw ( (new FileOperationError(localize(
683,
717,
"Unable to write file '{0}' ({1})",

@@ -382,3 +382,3 @@ this.resourceForError(resource),

throw ( (new Error(localize(
684,
718,
"Unable to unlock file '{0}' because provider does not support it.",

@@ -392,3 +392,3 @@ this.resourceForError(resource)

throw ( (new Error(localize(
685,
719,
"Unable to atomically write file '{0}' because provider does not support it.",

@@ -400,3 +400,3 @@ this.resourceForError(resource)

throw ( (new Error(localize(
686,
720,
"Unable to atomically write file '{0}' because provider does not support unbuffered writes.",

@@ -408,3 +408,3 @@ this.resourceForError(resource)

throw ( (new Error(localize(
687,
721,
"Unable to unlock file '{0}' because atomic write is enabled.",

@@ -424,3 +424,3 @@ this.resourceForError(resource)

throw ( (new FileOperationError(localize(
688,
722,
"Unable to write file '{0}' that is actually a directory",

@@ -435,3 +435,3 @@ this.resourceForError(resource)

throw ( (new FileOperationError(
localize(689, "File Modified Since"),
localize(723, "File Modified Since"),
3 ,

@@ -523,3 +523,3 @@ options

const message = ( localize(
690,
724,
"Unable to read file '{0}' ({1})",

@@ -590,3 +590,3 @@ this.resourceForError(resource),

throw ( (new FileOperationError(localize(
691,
725,
"Unable to read file '{0}' that is actually a directory",

@@ -597,3 +597,3 @@ this.resourceForError(resource)

if (typeof options?.etag === 'string' && options.etag !== ETAG_DISABLED && options.etag === stat.etag) {
throw ( (new NotModifiedSinceFileOperationError(localize(692, "File not modified since"), stat, options)));
throw ( (new NotModifiedSinceFileOperationError(localize(726, "File not modified since"), stat, options)));
}

@@ -606,3 +606,3 @@ this.validateReadFileLimits(resource, stat.size, options);

throw ( (new TooLargeFileOperationError(localize(
693,
727,
"Unable to read file '{0}' that is too large to open",

@@ -729,3 +729,3 @@ this.resourceForError(resource)

throw ( (new Error(localize(
694,
728,
"Unable to copy when source '{0}' is same as target '{1}' with different path case on a case insensitive file system",

@@ -738,3 +738,3 @@ this.resourceForError(source),

throw ( (new Error(localize(
695,
729,
"Unable to move/copy when source '{0}' is parent of target '{1}'.",

@@ -750,3 +750,3 @@ this.resourceForError(source),

throw ( (new FileOperationError(localize(
696,
730,
"Unable to move/copy '{0}' because target '{1}' already exists at destination.",

@@ -761,3 +761,3 @@ this.resourceForError(source),

throw ( (new Error(localize(
697,
731,
"Unable to move/copy '{0}' into '{1}' since a file would replace the folder it is contained in.",

@@ -807,3 +807,3 @@ this.resourceForError(source),

throw ( (new Error(localize(
698,
732,
"Unable to delete file '{0}' via trash because provider does not support it.",

@@ -816,3 +816,3 @@ this.resourceForError(resource)

throw ( (new Error(localize(
699,
733,
"Unable to delete file '{0}' atomically because provider does not support it.",

@@ -824,3 +824,3 @@ this.resourceForError(resource)

throw ( (new Error(localize(
700,
734,
"Unable to atomically delete file '{0}' because using trash is enabled.",

@@ -841,3 +841,3 @@ this.resourceForError(resource)

throw ( (new FileOperationError(localize(
701,
735,
"Unable to delete nonexistent file '{0}'",

@@ -852,3 +852,3 @@ this.resourceForError(resource)

throw ( (new Error(localize(
702,
736,
"Unable to delete non-empty folder '{0}'.",

@@ -1114,3 +1114,3 @@ this.resourceForError(resource)

throw ( (new FileOperationError(localize(
703,
737,
"Unable to modify read-only file '{0}'",

@@ -1125,3 +1125,3 @@ this.resourceForError(resource)

throw ( (new FileOperationError(localize(
703,
737,
"Unable to modify read-only file '{0}'",

@@ -1128,0 +1128,0 @@ this.resourceForError(resource)

@@ -64,3 +64,3 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';

notificationService.error(( localize(
9896,
9909,
"Failed to save '{0}': {1}",

@@ -67,0 +67,0 @@ model.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