diff --git a/package.json b/package.json index 33a4f802..a04fbcbb 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "@oclif/core": "^3.15.1", "@salesforce/core": "^6.4.2", "@salesforce/kit": "^3.0.15", - "@salesforce/sf-plugins-core": "^5.0.13", + "@salesforce/sf-plugins-core": "^7.0.0", "chalk": "^5.3.0", "change-case": "^5.3.0" }, diff --git a/src/commands/org/delete/shape.ts b/src/commands/org/delete/shape.ts index 9a01e3af..4eec4894 100644 --- a/src/commands/org/delete/shape.ts +++ b/src/commands/org/delete/shape.ts @@ -5,8 +5,6 @@ * For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause */ - - import { Flags, SfCommand, @@ -18,7 +16,7 @@ import { Messages, SfError } from '@salesforce/core'; import { isShapeEnabled } from '../../../shared/orgShapeListUtils.js'; import utils, { DeleteAllResult } from '../../../shared/deleteUtils.js'; -Messages.importMessagesDirectoryFromMetaUrl(import.meta.url) +Messages.importMessagesDirectoryFromMetaUrl(import.meta.url); const messages = Messages.loadMessages('@salesforce/plugin-signups', 'shape.delete'); export interface OrgShapeDeleteResult extends DeleteAllResult { @@ -50,7 +48,7 @@ export class OrgShapeDeleteCommand extends SfCommand