Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

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

Package Overview
Dependencies
Maintainers
6
Versions
132
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 8.0.1 to 8.0.2

6

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

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

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

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

const notFound = (id) => ( localize(9793, "Extension '{0}' not found.", id));
const notFound = (id) => ( localize(9800, "Extension '{0}' not found.", id));
const useId = ( localize(
9794,
9801,
"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(9795, "Extensions installed on {0}:", this.location)));
this.logger.info(( localize(9802, "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(9796, "Installing extensions on {0}...", this.location)) : ( localize(9797, "Installing extensions...")));
this.logger.info(this.location ? ( localize(9803, "Installing extensions on {0}...", this.location)) : ( localize(9804, "Installing extensions...")));
}

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

catch (error) {
this.logger.error(( localize(9798, "Error while installing extensions: {0}", getErrorMessage(error))));
this.logger.error(( localize(9805, "Error while installing extensions: {0}", getErrorMessage(error))));
throw error;
}
if (failed.length) {
throw ( (new Error(localize(9799, "Failed Installing Extensions: {0}", failed.join(', ')))));
throw ( (new Error(localize(9806, "Failed Installing Extensions: {0}", failed.join(', ')))));
}

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

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

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

if (!extensionsToUpdate.length) {
this.logger.info(( localize(9801, "No extension to update")));
this.logger.info(( localize(9808, "No extension to update")));
return;
}
this.logger.info(( localize(
9802,
9809,
"Updating extensions: {0}",

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

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

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

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

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

this.logger.info(( localize(
9805,
9812,
"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(9806, "Extension '{0}' is already installed.", `${id}@${version}`)));
this.logger.info(( localize(9813, "Extension '{0}' is already installed.", `${id}@${version}`)));
return false;

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

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

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

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

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

if (installOptions.isBuiltin) {
this.logger.info(version ? ( localize(9808, "Installing builtin extension '{0}' v{1}...", id, version)) : ( localize(9809, "Installing builtin extension '{0}'...", id)));
this.logger.info(version ? ( localize(9815, "Installing builtin extension '{0}' v{1}...", id, version)) : ( localize(9816, "Installing builtin extension '{0}'...", id)));
}
else {
this.logger.info(version ? ( localize(9810, "Installing extension '{0}' v{1}...", id, version)) : ( localize(9811, "Installing extension '{0}'...", id)));
this.logger.info(version ? ( localize(9817, "Installing extension '{0}' v{1}...", id, version)) : ( localize(9818, "Installing extension '{0}'...", id)));
}

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

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

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

this.logger.info(( localize(
9813,
9820,
"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(9814, "Extension '{0}' was successfully installed.", basename(vsix))));
this.logger.info(( localize(9821, "Extension '{0}' was successfully installed.", basename(vsix))));
}
catch (error) {
if (isCancellationError(error)) {
this.logger.info(( localize(9815, "Cancelled installing extension '{0}'.", basename(vsix))));
this.logger.info(( localize(9822, "Cancelled installing extension '{0}'.", basename(vsix))));
}

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

this.logger.info(( localize(
9816,
9823,
"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(
9817,
9824,
"Extension '{0}' is a Built-in extension and cannot be uninstalled",

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

this.logger.info(( localize(
9818,
9825,
"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(9819, "Uninstalling {0}...", id)));
this.logger.info(( localize(9826, "Uninstalling {0}...", id)));
for (const extensionToUninstall of extensionsToUninstall) {

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

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

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

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

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

notInstalled(id) {
return this.location ? ( localize(9822, "Extension '{0}' is not installed on {1}.", id, this.location)) : ( localize(9823, "Extension '{0}' is not installed.", id));
return this.location ? ( localize(9829, "Extension '{0}' is not installed on {1}.", id, this.location)) : ( localize(9830, "Extension '{0}' is not installed.", id));
}

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

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

return false;
})(), ( localize(9824, "Custom editor '{0}' could not be saved.", this.name)));
})(), ( localize(9831, "Custom editor '{0}' could not be saved.", this.name)));
}));

@@ -376,3 +376,3 @@ }

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

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

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

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

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

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

id: 'join.disconnectRemote',
label: ( localize(1126, "Disconnect Remote Agent")),
label: ( localize(1127, "Disconnect Remote Agent")),
order: WillShutdownJoinerOrder.Last

@@ -250,3 +250,3 @@ });

message: ( localize(
1127,
1128,
"The following extensions contain dependency loops and have been disabled: {0}",

@@ -405,3 +405,3 @@ ( (result.removedDueToLooping.map(e => `'${e.identifier.value}'`))).join(', ')

message: ( localize(
1127,
1128,
"The following extensions contain dependency loops and have been disabled: {0}",

@@ -421,3 +421,3 @@ ( (result.removedDueToLooping.map(e => `'${e.identifier.value}'`))).join(', ')

const msg = ( localize(
1128,
1129,
"No extension host found that can launch the test runner at {0}.",

@@ -588,3 +588,3 @@ (this._environmentService.extensionTestsLocationURI.toString())

}).catch(error => {
vetoReasons.add(( localize(1129, "{0} (Error: {1})", reason, toErrorMessage(error))));
vetoReasons.add(( localize(1130, "{0} (Error: {1})", reason, toErrorMessage(error))));
});

@@ -602,6 +602,6 @@ }

this._logService.warn(`Extension host was not stopped because of veto (stop reason: ${reason}, veto reason: ${vetoReasonsArray.join(', ')})`);
await this._dialogService.warn(( localize(1130, "The following operation was blocked: {0}", reason)), vetoReasonsArray.length === 1 ?
( localize(1131, "The reason for blocking the operation: {0}", vetoReasonsArray[0])) :
await this._dialogService.warn(( localize(1131, "The following operation was blocked: {0}", reason)), vetoReasonsArray.length === 1 ?
( localize(1132, "The reason for blocking the operation: {0}", vetoReasonsArray[0])) :
( localize(
1132,
1133,
"The reasons for blocking the operation:\n- {0}",

@@ -704,3 +704,3 @@ vetoReasonsArray.join('\n -')

this._logService.info(`Automatically restarting the remote extension host.`);
this._notificationService.status(( localize(1133, "The remote extension host terminated unexpectedly. Restarting...")), { hideAfter: 5000 });
this._notificationService.status(( localize(1134, "The remote extension host terminated unexpectedly. Restarting...")), { hideAfter: 5000 });
this._startExtensionHostsIfNecessary(false, Array.from(( (this._allRequestedActivateEvents.keys()))));

@@ -710,6 +710,6 @@ }

this._notificationService.prompt(Severity$1.Error, ( localize(
1134,
1135,
"Remote Extension host terminated unexpectedly 3 times within the last 5 minutes."
)), [{
label: ( localize(1135, "Restart Remote Extension Host")),
label: ( localize(1136, "Restart Remote Extension Host")),
run: () => {

@@ -1191,3 +1191,3 @@ this._startExtensionHostsIfNecessary(false, Array.from(( (this._allRequestedActivateEvents.keys()))));

id: 'activationEvents',
label: ( localize(1136, "Activation Events")),
label: ( localize(1137, "Activation Events")),
access: {

@@ -1194,0 +1194,0 @@ canToggle: false

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

id: 'enabledApiProposals',
label: ( localize(1137, "API Proposals")),
label: ( localize(1126, "API Proposals")),
access: {

@@ -113,0 +113,0 @@ canToggle: false

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