generated from salesforcecli/plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 8
/
create.ts
98 lines (93 loc) · 3.67 KB
/
create.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
/*
* Copyright (c) 2022, salesforce.com, inc.
* All rights reserved.
* Licensed under the BSD 3-Clause license.
* For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
*/
import { Flags, loglevel, orgApiVersionFlagWithDeprecations, SfCommand } from '@salesforce/sf-plugins-core';
import { Messages } from '@salesforce/core/messages';
import { Package, PackageCreateOptions, PackageType } from '@salesforce/packaging';
import { requiredHubFlag } from '../../utils/hubFlag.js';
Messages.importMessagesDirectoryFromMetaUrl(import.meta.url);
const messages = Messages.loadMessages('@salesforce/plugin-packaging', 'package_create');
export type PackageCreate = { Id: string };
export class PackageCreateCommand extends SfCommand<PackageCreate> {
public static readonly summary = messages.getMessage('summary');
public static readonly description = messages.getMessage('description');
public static readonly examples = messages.getMessages('examples');
public static readonly deprecateAliases = true;
public static readonly aliases = ['force:package:create'];
public static readonly requiresProject = true;
public static readonly flags = {
loglevel,
'target-dev-hub': requiredHubFlag,
'api-version': orgApiVersionFlagWithDeprecations,
name: Flags.string({
char: 'n',
summary: messages.getMessage('flags.name.summary'),
required: true,
}),
'package-type': Flags.custom<PackageType>({
options: ['Managed', 'Unlocked'],
})({
required: true,
char: 't',
deprecateAliases: true,
aliases: ['packagetype'],
summary: messages.getMessage('flags.package-type.summary'),
description: messages.getMessage('flags.package-type.description'),
}),
description: Flags.string({
char: 'd',
summary: messages.getMessage('flags.description.summary'),
}),
'no-namespace': Flags.boolean({
char: 'e',
deprecateAliases: true,
aliases: ['nonamespace'],
summary: messages.getMessage('flags.no-namespace.summary'),
description: messages.getMessage('flags.no-namespace.description'),
}),
path: Flags.directory({
char: 'r',
summary: messages.getMessage('flags.path.summary'),
required: true,
}),
'org-dependent': Flags.boolean({
deprecateAliases: true,
aliases: ['orgdependent'],
summary: messages.getMessage('flags.org-dependent.summary'),
description: messages.getMessage('flags.org-dependent.description'),
}),
'error-notification-username': Flags.string({
// eslint-disable-next-line sf-plugin/dash-o
char: 'o',
deprecateAliases: true,
aliases: ['errornotificationusername'],
summary: messages.getMessage('flags.error-notification-username.summary'),
description: messages.getMessage('flags.error-notification-username.description'),
}),
};
public async run(): Promise<PackageCreate> {
const { flags } = await this.parse(PackageCreateCommand);
const options: PackageCreateOptions = {
description: flags.description ?? '',
errorNotificationUsername: flags['error-notification-username'] as string,
name: flags.name,
noNamespace: flags['no-namespace'],
orgDependent: flags['org-dependent'],
packageType: flags['package-type'],
path: flags.path,
};
const result: PackageCreate = await Package.create(
flags['target-dev-hub'].getConnection(flags['api-version']),
this.project!,
options
);
this.display(result);
return result;
}
private display(result: PackageCreate): void {
this.table({ data: [{ name: 'Package Id', value: result.Id }], title: 'Ids' });
}
}