From 51ef46c11b0621a2441fe60f6f95537e5bf6735b Mon Sep 17 00:00:00 2001 From: Brian Date: Tue, 12 May 2026 23:40:47 -0500 Subject: [PATCH] style: apply prettier formatting --- tools/installer/modules/external-manager.js | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/tools/installer/modules/external-manager.js b/tools/installer/modules/external-manager.js index 20b396fba..d8ecf8a5d 100644 --- a/tools/installer/modules/external-manager.js +++ b/tools/installer/modules/external-manager.js @@ -532,13 +532,11 @@ class ExternalModuleManager { const resolution = ExternalModuleManager._resolutions.get(moduleCode); const versionHint = resolution?.version ? `version ${resolution.version}` : 'the cloned version'; const channelHint = - resolution?.channel === 'stable' - ? ` Try reinstalling with \`--next=${moduleCode}\` to use the latest main branch instead.` - : ''; + resolution?.channel === 'stable' ? ` Try reinstalling with \`--next=${moduleCode}\` to use the latest main branch instead.` : ''; throw new Error( `Module '${moduleCode}' was downloaded but its module definition was not found. ` + - `Expected '${moduleDefinitionPath}' to exist in ${versionHint}, but it is missing. ` + - `The repository may have been restructured after this release was tagged.${channelHint}`, + `Expected '${moduleDefinitionPath}' to exist in ${versionHint}, but it is missing. ` + + `The repository may have been restructured after this release was tagged.${channelHint}`, ); } cachedModules = null;