Const
A required org, specified by username or alias Will throw if the specified org default do not exist Will default to the default org if one is not specified. Will throw if no default org exists and none is specified
import { Flags } from '@salesforce/sf-plugins-core';public static flags = { // setting length or prefix 'target-org': Flags.requiredOrg(), // adding properties 'flag2': Flags.requiredOrg({ required: true, description: 'flag2 description', char: 'o' }),} Copy
import { Flags } from '@salesforce/sf-plugins-core';public static flags = { // setting length or prefix 'target-org': Flags.requiredOrg(), // adding properties 'flag2': Flags.requiredOrg({ required: true, description: 'flag2 description', char: 'o' }),}
A required org, specified by username or alias Will throw if the specified org default do not exist Will default to the default org if one is not specified. Will throw if no default org exists and none is specified