diff --git a/src/commands/info/releasenotes/display.ts b/src/commands/info/releasenotes/display.ts index 606f10fc..8573d517 100644 --- a/src/commands/info/releasenotes/display.ts +++ b/src/commands/info/releasenotes/display.ts @@ -7,7 +7,6 @@ import { EOL } from 'node:os'; - import { marked } from 'marked'; import TerminalRenderer from 'marked-terminal'; import { Env } from '@salesforce/kit'; @@ -17,7 +16,7 @@ import type { AnyJson, JsonMap } from '@salesforce/ts-types'; import shared from '../../../shared/index.js'; // Initialize Messages with the current plugin directory -Messages.importMessagesDirectoryFromMetaUrl(import.meta.url) +Messages.importMessagesDirectoryFromMetaUrl(import.meta.url); const helpers = ['stable', 'stable-rc', 'latest', 'latest-rc', 'rc']; diff --git a/src/diagnostics.ts b/src/diagnostics.ts index 68aac76e..2176fd0d 100644 --- a/src/diagnostics.ts +++ b/src/diagnostics.ts @@ -7,7 +7,6 @@ import childProcess from 'node:child_process'; - import { Interfaces } from '@oclif/core'; import { Lifecycle, Messages } from '@salesforce/core'; import { SfDoctor, SfDoctorDiagnosis } from './doctor.js'; @@ -24,7 +23,7 @@ export interface DiagnosticStatus { status: 'pass' | 'fail' | 'warn' | 'unknown'; } -Messages.importMessagesDirectoryFromMetaUrl(import.meta.url) +Messages.importMessagesDirectoryFromMetaUrl(import.meta.url); const messages = Messages.loadMessages('@salesforce/plugin-info', 'diagnostics'); /**