Skip to content

Commit

Permalink
chore: bump sf-plugins-core
Browse files Browse the repository at this point in the history
  • Loading branch information
mdonnalley committed Nov 8, 2023
1 parent d986d86 commit dfd46f5
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"@oclif/core": "^3.10.2",
"@salesforce/core": "^5.3.17",
"@salesforce/kit": "^3.0.15",
"@salesforce/sf-plugins-core": "^4.0.1-dev.2",
"@salesforce/sf-plugins-core": "^4.0.1-dev.6",
"@salesforce/ts-types": "^2.0.9",
"chalk": "^5.3.0",
"open": "^9.1.0"
Expand All @@ -19,7 +19,6 @@
"@salesforce/dev-scripts": "^6.0.3",
"@salesforce/plugin-command-reference": "^3.0.42",
"@salesforce/ts-sinon": "^1.4.19",
"@types/inquirer": "^8.2.0",
"eslint-plugin-sf-plugin": "^1.16.11",
"oclif": "^4.0.3",
"shx": "0.3.4",
Expand Down
4 changes: 2 additions & 2 deletions src/commands/org/logout.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import { AuthBaseCommand } from '../../authBaseCommand.js';
Messages.importMessagesDirectory(dirname(fileURLToPath(import.meta.url)));
const messages = Messages.loadMessages('@salesforce/plugin-auth', 'logout');
const commonMessages = Messages.loadMessages('@salesforce/plugin-auth', 'messages');
type choice = { name: string; value: OrgAuthorization };
type Choice = { name: string; value: OrgAuthorization };

export type AuthLogoutResults = string[];

Expand Down Expand Up @@ -65,7 +65,7 @@ export default class Logout extends AuthBaseCommand<AuthLogoutResults> {

private flags!: Interfaces.InferredFlags<typeof Logout.flags>;

private static buildChoices(orgAuths: OrgAuthorization[], all: boolean): Array<choice | Separator> {
private static buildChoices(orgAuths: OrgAuthorization[], all: boolean): Array<Choice | Separator> {
const maxUsernameLength = Math.max('Username'.length, ...orgAuths.map((orgAuth) => orgAuth.username.length));
const maxAliasLength = Math.max(
'Aliases'.length,
Expand Down
11 changes: 6 additions & 5 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1020,15 +1020,16 @@
chalk "^4"
inquirer "^8.2.5"

"@salesforce/sf-plugins-core@^4.0.1-dev.2":
version "4.0.1-dev.2"
resolved "https://registry.yarnpkg.com/@salesforce/sf-plugins-core/-/sf-plugins-core-4.0.1-dev.2.tgz#dae8e38de2acb80f6a74c7bfcf44d01e7c46dd59"
integrity sha512-qJ3AByHVM/UdVLXpTDp2cLYku/6v5rd2DFmEU4/gjghLQ6W1tzONFc3BPE/EXK77A6xfzdCkaOGmoM3tQppmhg==
"@salesforce/sf-plugins-core@^4.0.1-dev.6":
version "4.0.1-dev.6"
resolved "https://registry.yarnpkg.com/@salesforce/sf-plugins-core/-/sf-plugins-core-4.0.1-dev.6.tgz#c9a488931a40fe0f190710cc8d02406b12ee49ed"
integrity sha512-FOq0K9neVamAWf9sVME2Yq+l+OZ7zrD/QXkjMMt5JXD8edW8T/3bGt65PrGSZcjz2VfTJjMrvxlC4WSjlJmOsQ==
dependencies:
"@oclif/core" "^3.0.0"
"@salesforce/core" "^5.3.1"
"@salesforce/kit" "^3.0.13"
"@salesforce/ts-types" "^2.0.7"
"@types/inquirer" "^8.2.3"
chalk "^4"
inquirer "^8.2.5"

Expand Down Expand Up @@ -1182,7 +1183,7 @@
resolved "https://registry.yarnpkg.com/@types/http-cache-semantics/-/http-cache-semantics-4.0.1.tgz#0ea7b61496902b95890dc4c3a116b60cb8dae812"
integrity sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==

"@types/inquirer@^8.2.0":
"@types/inquirer@^8.2.3":
version "8.2.10"
resolved "https://registry.yarnpkg.com/@types/inquirer/-/inquirer-8.2.10.tgz#9444dce2d764c35bc5bb4d742598aaa4acb6561b"
integrity sha512-IdD5NmHyVjWM8SHWo/kPBgtzXatwPkfwzyP3fN1jF2g9BWt5WO+8hL2F4o2GKIYsU40PpqeevuUWvkS/roXJkA==
Expand Down

0 comments on commit dfd46f5

Please sign in to comment.