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

@codingame/monaco-vscode-extensions-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-extensions-service-override - npm Package Compare versions

Comparing version 10.0.1 to 10.0.2

6

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

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

"dependencies": {
"vscode": "npm:@codingame/monaco-vscode-api@10.0.1",
"@codingame/monaco-vscode-files-service-override": "10.0.1"
"vscode": "npm:@codingame/monaco-vscode-api@10.0.2",
"@codingame/monaco-vscode-files-service-override": "10.0.2"
}
}

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

const notFound = (id) => ( localize(9904, "Extension '{0}' not found.", id));
const notFound = (id) => ( localize(9912, "Extension '{0}' not found.", id));
const useId = ( localize(
9905,
9913,
"Make sure you use the full extension ID, including the publisher, e.g.: {0}",

@@ -54,3 +54,3 @@ 'ms-dotnettools.csharp'

if (this.location) {
this.logger.info(( localize(9906, "Extensions installed on {0}:", this.location)));
this.logger.info(( localize(9914, "Extensions installed on {0}:", this.location)));
}

@@ -70,3 +70,3 @@ extensions = extensions.sort((e1, e2) => e1.identifier.id.localeCompare(e2.identifier.id));

if (extensions.length) {
this.logger.info(this.location ? ( localize(9907, "Installing extensions on {0}...", this.location)) : ( localize(9908, "Installing extensions...")));
this.logger.info(this.location ? ( localize(9915, "Installing extensions on {0}...", this.location)) : ( localize(9916, "Installing extensions...")));
}

@@ -114,7 +114,7 @@ const installVSIXInfos = [];

catch (error) {
this.logger.error(( localize(9909, "Error while installing extensions: {0}", getErrorMessage(error))));
this.logger.error(( localize(9917, "Error while installing extensions: {0}", getErrorMessage(error))));
throw error;
}
if (failed.length) {
throw ( (new Error(localize(9910, "Failed Installing Extensions: {0}", failed.join(', ')))));
throw ( (new Error(localize(9918, "Failed Installing Extensions: {0}", failed.join(', ')))));
}

@@ -131,3 +131,3 @@ }

this.logger.trace(( localize(
9911,
9919,
"Fetching latest versions for {0} extensions",

@@ -149,7 +149,7 @@ installedExtensionsQuery.length

if (!extensionsToUpdate.length) {
this.logger.info(( localize(9912, "No extension to update")));
this.logger.info(( localize(9920, "No extension to update")));
return;
}
this.logger.info(( localize(
9913,
9921,
"Updating extensions: {0}",

@@ -162,3 +162,3 @@ ( (extensionsToUpdate.map(ext => ext.extension.identifier.id))).join(', ')

this.logger.error(( localize(
9914,
9922,
"Error while updating extension {0}: {1}",

@@ -171,3 +171,3 @@ extensionResult.identifier.id,

this.logger.info(( localize(
9915,
9923,
"Extension '{0}' v{1} was successfully updated.",

@@ -186,3 +186,3 @@ extensionResult.identifier.id,

this.logger.info(( localize(
9916,
9924,
"Extension '{0}' v{1} is already installed. Use '--force' option to update to latest version or provide '@<version>' to install a specific version, for example: '{2}@1.2.3'.",

@@ -196,3 +196,3 @@ id,

if (version && installedExtension.manifest.version === version) {
this.logger.info(( localize(9917, "Extension '{0}' is already installed.", `${id}@${version}`)));
this.logger.info(( localize(9925, "Extension '{0}' is already installed.", `${id}@${version}`)));
return false;

@@ -231,3 +231,3 @@ }

this.logger.info(( localize(
9917,
9925,
"Extension '{0}' is already installed.",

@@ -239,3 +239,3 @@ version ? `${id}@${version}` : id

this.logger.info(( localize(
9918,
9926,
"Updating the extension '{0}' to the version {1}",

@@ -247,6 +247,6 @@ id,

if (installOptions.isBuiltin) {
this.logger.info(version ? ( localize(9919, "Installing builtin extension '{0}' v{1}...", id, version)) : ( localize(9920, "Installing builtin extension '{0}'...", id)));
this.logger.info(version ? ( localize(9927, "Installing builtin extension '{0}' v{1}...", id, version)) : ( localize(9928, "Installing builtin extension '{0}'...", id)));
}
else {
this.logger.info(version ? ( localize(9921, "Installing extension '{0}' v{1}...", id, version)) : ( localize(9922, "Installing extension '{0}'...", id)));
this.logger.info(version ? ( localize(9929, "Installing extension '{0}' v{1}...", id, version)) : ( localize(9930, "Installing extension '{0}'...", id)));
}

@@ -263,3 +263,3 @@ extensionsToInstall.push({

this.logger.error(( localize(
9923,
9931,
"Error while installing extension {0}: {1}",

@@ -273,3 +273,3 @@ extensionResult.identifier.id,

this.logger.info(( localize(
9924,
9932,
"Extension '{0}' v{1} was successfully installed.",

@@ -293,7 +293,7 @@ extensionResult.identifier.id,

await this.extensionManagementService.install(vsix, { ...installOptions, installGivenVersion: true });
this.logger.info(( localize(9925, "Extension '{0}' was successfully installed.", basename(vsix))));
this.logger.info(( localize(9933, "Extension '{0}' was successfully installed.", basename(vsix))));
}
catch (error) {
if (isCancellationError(error)) {
this.logger.info(( localize(9926, "Cancelled installing extension '{0}'.", basename(vsix))));
this.logger.info(( localize(9934, "Cancelled installing extension '{0}'.", basename(vsix))));
}

@@ -333,3 +333,3 @@ else {

this.logger.info(( localize(
9927,
9935,
"A newer version of extension '{0}' v{1} is already installed. Use '--force' option to downgrade to older version.",

@@ -362,3 +362,3 @@ newer.identifier.id,

this.logger.info(( localize(
9928,
9936,
"Extension '{0}' is a Built-in extension and cannot be uninstalled",

@@ -371,3 +371,3 @@ id

this.logger.info(( localize(
9929,
9937,
"Extension '{0}' is marked as a Built-in extension by user. Please use '--force' option to uninstall it.",

@@ -378,3 +378,3 @@ id

}
this.logger.info(( localize(9930, "Uninstalling {0}...", id)));
this.logger.info(( localize(9938, "Uninstalling {0}...", id)));
for (const extensionToUninstall of extensionsToUninstall) {

@@ -385,3 +385,3 @@ await this.extensionManagementService.uninstall(extensionToUninstall, { profileLocation });

this.logger.info(( localize(
9931,
9939,
"Extension '{0}' was successfully uninstalled from {1}!",

@@ -393,3 +393,3 @@ id,

else {
this.logger.info(( localize(9932, "Extension '{0}' was successfully uninstalled!", id)));
this.logger.info(( localize(9940, "Extension '{0}' was successfully uninstalled!", id)));
}

@@ -412,3 +412,3 @@ }

notInstalled(id) {
return this.location ? ( localize(9933, "Extension '{0}' is not installed on {1}.", id, this.location)) : ( localize(9934, "Extension '{0}' is not installed.", id));
return this.location ? ( localize(9941, "Extension '{0}' is not installed on {1}.", id, this.location)) : ( localize(9942, "Extension '{0}' is not installed.", id));
}

@@ -415,0 +415,0 @@ };

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

}
const matchingAccountPreferenceSession = this._getAccountPreference(extensionId, providerId, scopes, sessions);
const matchingAccountPreferenceSession =
options.account
? sessions[0]
: this._getAccountPreference(extensionId, providerId, scopes, sessions);
if (!options.forceNewSession && sessions.length) {

@@ -198,0 +201,0 @@ if (matchingAccountPreferenceSession && this.authenticationAccessService.isAccessAllowed(providerId, matchingAccountPreferenceSession.account.label, extensionId)) {

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

this._register(extensionService.onWillStop(e => {
e.veto(true, ( localize(9948, "A custom editor for '{0}' is open.", this.name)));
e.veto(true, ( localize(9956, "A custom editor for '{0}' is open.", this.name)));
}));

@@ -359,3 +359,3 @@ }

resource: this._editorResource,
label: label ?? ( localize(9949, "Edit")),
label: label ?? ( localize(9957, "Edit")),
code: 'undoredo.customEditorEdit',

@@ -362,0 +362,0 @@ undo: () => this.undo(),

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

</head>
<body>${( localize(9903, "An error occurred while loading view: {0}", escape(viewType)))}</body>
<body>${( localize(9911, "An error occurred while loading view: {0}", escape(viewType)))}</body>
</html>`;

@@ -109,0 +109,0 @@ }

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