@salesforce/plugin-release-management 4.4.24 → 4.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +65 -65
- package/bin/dev.cmd +1 -1
- package/bin/dev.js +6 -0
- package/bin/run.cmd +1 -1
- package/bin/run.js +7 -0
- package/lib/commands/channel/promote.d.ts +8 -8
- package/lib/commands/cli/artifacts/compare.d.ts +3 -3
- package/lib/commands/cli/install/jit/test.d.ts +1 -1
- package/lib/commands/cli/install/test.d.ts +4 -4
- package/lib/commands/cli/release/automerge.d.ts +3 -3
- package/lib/commands/cli/release/build.d.ts +6 -6
- package/lib/commands/cli/releasenotes.d.ts +2 -2
- package/lib/commands/cli/tarballs/verify.d.ts +2 -2
- package/lib/commands/cli/versions/inspect.d.ts +4 -4
- package/lib/commands/dependabot/automerge.d.ts +4 -4
- package/lib/commands/github/check/closed.d.ts +2 -2
- package/lib/commands/npm/dependencies/pin.d.ts +1 -1
- package/lib/commands/npm/package/release.d.ts +4 -4
- package/lib/dependabot.d.ts +1 -1
- package/npm-shrinkwrap.json +393 -385
- package/oclif.manifest.json +706 -455
- package/package.json +10 -12
- package/bin/dev +0 -21
- package/bin/run +0 -3
package/oclif.manifest.json
CHANGED
|
@@ -1,117 +1,121 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "4.4.24",
|
|
3
2
|
"commands": {
|
|
4
3
|
"channel:promote": {
|
|
5
|
-
"id": "channel:promote",
|
|
6
|
-
"summary": "promote a s3 channel",
|
|
7
|
-
"description": "promote a s3 channel",
|
|
8
|
-
"strict": true,
|
|
9
|
-
"pluginName": "@salesforce/plugin-release-management",
|
|
10
|
-
"pluginAlias": "@salesforce/plugin-release-management",
|
|
11
|
-
"pluginType": "core",
|
|
12
4
|
"aliases": [],
|
|
5
|
+
"args": {},
|
|
6
|
+
"description": "promote a s3 channel",
|
|
13
7
|
"examples": [
|
|
14
8
|
"<%= config.bin %> <%= command.id %> --candidate latest-rc --target latest --platform win --platform mac"
|
|
15
9
|
],
|
|
16
10
|
"flags": {
|
|
17
11
|
"json": {
|
|
18
|
-
"name": "json",
|
|
19
|
-
"type": "boolean",
|
|
20
12
|
"description": "Format output as json.",
|
|
21
13
|
"helpGroup": "GLOBAL",
|
|
22
|
-
"
|
|
14
|
+
"name": "json",
|
|
15
|
+
"allowNo": false,
|
|
16
|
+
"type": "boolean"
|
|
23
17
|
},
|
|
24
18
|
"dryrun": {
|
|
25
|
-
"name": "dryrun",
|
|
26
|
-
"type": "boolean",
|
|
27
19
|
"char": "d",
|
|
20
|
+
"name": "dryrun",
|
|
28
21
|
"summary": "If true, only show what would happen",
|
|
29
|
-
"allowNo": false
|
|
22
|
+
"allowNo": false,
|
|
23
|
+
"type": "boolean"
|
|
30
24
|
},
|
|
31
25
|
"promote-to-channel": {
|
|
32
|
-
"
|
|
33
|
-
|
|
26
|
+
"aliases": [
|
|
27
|
+
"target"
|
|
28
|
+
],
|
|
34
29
|
"char": "t",
|
|
35
|
-
"
|
|
30
|
+
"name": "promote-to-channel",
|
|
36
31
|
"required": true,
|
|
37
|
-
"
|
|
32
|
+
"summary": "the channel name that you are promoting to",
|
|
38
33
|
"default": "stable",
|
|
39
|
-
"
|
|
40
|
-
|
|
41
|
-
|
|
34
|
+
"hasDynamicHelp": false,
|
|
35
|
+
"multiple": false,
|
|
36
|
+
"type": "option"
|
|
42
37
|
},
|
|
43
38
|
"promote-from-channel": {
|
|
44
|
-
"
|
|
45
|
-
|
|
39
|
+
"aliases": [
|
|
40
|
+
"candidate"
|
|
41
|
+
],
|
|
46
42
|
"char": "C",
|
|
43
|
+
"name": "promote-from-channel",
|
|
47
44
|
"summary": "the channel name that you want to promote",
|
|
45
|
+
"hasDynamicHelp": false,
|
|
48
46
|
"multiple": false,
|
|
49
|
-
"
|
|
50
|
-
"candidate"
|
|
51
|
-
]
|
|
47
|
+
"type": "option"
|
|
52
48
|
},
|
|
53
49
|
"platform": {
|
|
54
|
-
"name": "platform",
|
|
55
|
-
"type": "option",
|
|
56
50
|
"char": "p",
|
|
51
|
+
"name": "platform",
|
|
57
52
|
"summary": "the platform to promote",
|
|
53
|
+
"delimiter": ",",
|
|
54
|
+
"hasDynamicHelp": false,
|
|
58
55
|
"multiple": true,
|
|
59
56
|
"options": [
|
|
60
57
|
"win",
|
|
61
58
|
"macos",
|
|
62
59
|
"deb"
|
|
63
60
|
],
|
|
64
|
-
"
|
|
61
|
+
"type": "option"
|
|
65
62
|
},
|
|
66
63
|
"cli": {
|
|
67
|
-
"name": "cli",
|
|
68
|
-
"type": "option",
|
|
69
64
|
"char": "c",
|
|
70
|
-
"
|
|
65
|
+
"name": "cli",
|
|
71
66
|
"required": true,
|
|
67
|
+
"summary": "the cli name to promote",
|
|
68
|
+
"hasDynamicHelp": false,
|
|
72
69
|
"multiple": false,
|
|
73
70
|
"options": [
|
|
74
71
|
"sf",
|
|
75
72
|
"sfdx"
|
|
76
|
-
]
|
|
73
|
+
],
|
|
74
|
+
"type": "option"
|
|
77
75
|
},
|
|
78
76
|
"sha": {
|
|
79
|
-
"name": "sha",
|
|
80
|
-
"type": "option",
|
|
81
77
|
"char": "s",
|
|
78
|
+
"name": "sha",
|
|
82
79
|
"summary": "the short sha to promote",
|
|
83
|
-
"
|
|
80
|
+
"hasDynamicHelp": false,
|
|
81
|
+
"multiple": false,
|
|
82
|
+
"type": "option"
|
|
84
83
|
},
|
|
85
84
|
"max-age": {
|
|
86
|
-
"
|
|
87
|
-
|
|
85
|
+
"aliases": [
|
|
86
|
+
"maxage"
|
|
87
|
+
],
|
|
88
88
|
"char": "m",
|
|
89
|
+
"name": "max-age",
|
|
89
90
|
"summary": "cache control max-age in seconds",
|
|
90
|
-
"multiple": false,
|
|
91
91
|
"default": 300,
|
|
92
|
-
"
|
|
93
|
-
|
|
94
|
-
|
|
92
|
+
"hasDynamicHelp": false,
|
|
93
|
+
"multiple": false,
|
|
94
|
+
"type": "option"
|
|
95
95
|
},
|
|
96
96
|
"indexes": {
|
|
97
|
-
"name": "indexes",
|
|
98
|
-
"type": "boolean",
|
|
99
97
|
"char": "i",
|
|
98
|
+
"name": "indexes",
|
|
100
99
|
"summary": "append the promoted urls into the index files",
|
|
101
|
-
"allowNo": true
|
|
100
|
+
"allowNo": true,
|
|
101
|
+
"type": "boolean"
|
|
102
102
|
},
|
|
103
103
|
"xz": {
|
|
104
|
-
"name": "xz",
|
|
105
|
-
"type": "boolean",
|
|
106
104
|
"char": "x",
|
|
105
|
+
"name": "xz",
|
|
107
106
|
"summary": "also upload xz",
|
|
108
|
-
"allowNo": true
|
|
107
|
+
"allowNo": true,
|
|
108
|
+
"type": "boolean"
|
|
109
109
|
},
|
|
110
110
|
"architecture-target": {
|
|
111
|
-
"
|
|
112
|
-
|
|
111
|
+
"aliases": [
|
|
112
|
+
"targets"
|
|
113
|
+
],
|
|
113
114
|
"char": "T",
|
|
115
|
+
"name": "architecture-target",
|
|
114
116
|
"summary": "comma-separated targets to promote (e.g.: linux-arm,win32-x64)",
|
|
117
|
+
"delimiter": ",",
|
|
118
|
+
"hasDynamicHelp": false,
|
|
115
119
|
"multiple": true,
|
|
116
120
|
"options": [
|
|
117
121
|
"linux-x64",
|
|
@@ -120,30 +124,39 @@
|
|
|
120
124
|
"win32-x86",
|
|
121
125
|
"darwin-x64"
|
|
122
126
|
],
|
|
123
|
-
"
|
|
124
|
-
"targets"
|
|
125
|
-
],
|
|
126
|
-
"delimiter": ","
|
|
127
|
+
"type": "option"
|
|
127
128
|
},
|
|
128
129
|
"version": {
|
|
129
|
-
"name": "version",
|
|
130
|
-
"type": "option",
|
|
131
130
|
"char": "v",
|
|
131
|
+
"name": "version",
|
|
132
132
|
"summary": "the version of the candidate to be promoted, which must exist already in s3. Used to fetch the correct sha",
|
|
133
|
-
"
|
|
133
|
+
"hasDynamicHelp": false,
|
|
134
|
+
"multiple": false,
|
|
135
|
+
"type": "option"
|
|
134
136
|
}
|
|
135
137
|
},
|
|
136
|
-
"
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
"id": "cli:releasenotes",
|
|
140
|
-
"summary": "pull all relevant information for writing release notes.\nRequires the GH_TOKEN to be set in the environment.",
|
|
141
|
-
"description": "pull all relevant information for writing release notes.\nRequires the GH_TOKEN to be set in the environment.",
|
|
142
|
-
"strict": true,
|
|
143
|
-
"pluginName": "@salesforce/plugin-release-management",
|
|
138
|
+
"hasDynamicHelp": false,
|
|
139
|
+
"hiddenAliases": [],
|
|
140
|
+
"id": "channel:promote",
|
|
144
141
|
"pluginAlias": "@salesforce/plugin-release-management",
|
|
142
|
+
"pluginName": "@salesforce/plugin-release-management",
|
|
145
143
|
"pluginType": "core",
|
|
144
|
+
"strict": true,
|
|
145
|
+
"summary": "promote a s3 channel",
|
|
146
|
+
"enableJsonFlag": true,
|
|
147
|
+
"SF_ENV": "SF_ENV",
|
|
148
|
+
"isESM": false,
|
|
149
|
+
"relativePath": [
|
|
150
|
+
"lib",
|
|
151
|
+
"commands",
|
|
152
|
+
"channel",
|
|
153
|
+
"promote.js"
|
|
154
|
+
]
|
|
155
|
+
},
|
|
156
|
+
"cli:releasenotes": {
|
|
146
157
|
"aliases": [],
|
|
158
|
+
"args": {},
|
|
159
|
+
"description": "pull all relevant information for writing release notes.\nRequires the GH_TOKEN to be set in the environment.",
|
|
147
160
|
"examples": [
|
|
148
161
|
"<%= config.bin %> <%= command.id %> --cli sf",
|
|
149
162
|
"<%= config.bin %> <%= command.id %> --cli sfdx",
|
|
@@ -154,50 +167,63 @@
|
|
|
154
167
|
],
|
|
155
168
|
"flags": {
|
|
156
169
|
"json": {
|
|
157
|
-
"name": "json",
|
|
158
|
-
"type": "boolean",
|
|
159
170
|
"description": "Format output as json.",
|
|
160
171
|
"helpGroup": "GLOBAL",
|
|
161
|
-
"
|
|
172
|
+
"name": "json",
|
|
173
|
+
"allowNo": false,
|
|
174
|
+
"type": "boolean"
|
|
162
175
|
},
|
|
163
176
|
"cli": {
|
|
164
|
-
"name": "cli",
|
|
165
|
-
"type": "option",
|
|
166
177
|
"char": "c",
|
|
167
|
-
"
|
|
178
|
+
"name": "cli",
|
|
168
179
|
"required": true,
|
|
180
|
+
"summary": "the cli to pull information for",
|
|
181
|
+
"hasDynamicHelp": false,
|
|
169
182
|
"multiple": false,
|
|
170
183
|
"options": [
|
|
171
184
|
"sf",
|
|
172
185
|
"sfdx"
|
|
173
|
-
]
|
|
186
|
+
],
|
|
187
|
+
"type": "option"
|
|
174
188
|
},
|
|
175
189
|
"since": {
|
|
176
|
-
"name": "since",
|
|
177
|
-
"type": "option",
|
|
178
190
|
"char": "s",
|
|
191
|
+
"name": "since",
|
|
179
192
|
"summary": "the version number of the previous release. Defaults to the latest-rc version on npm",
|
|
180
|
-
"
|
|
193
|
+
"hasDynamicHelp": false,
|
|
194
|
+
"multiple": false,
|
|
195
|
+
"type": "option"
|
|
181
196
|
},
|
|
182
197
|
"markdown": {
|
|
183
|
-
"name": "markdown",
|
|
184
|
-
"type": "boolean",
|
|
185
198
|
"char": "m",
|
|
199
|
+
"name": "markdown",
|
|
186
200
|
"summary": "format the output in markdown",
|
|
187
|
-
"allowNo": false
|
|
201
|
+
"allowNo": false,
|
|
202
|
+
"type": "boolean"
|
|
188
203
|
}
|
|
189
204
|
},
|
|
190
|
-
"
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
"id": "dependabot:automerge",
|
|
194
|
-
"summary": "automatically merge one green, mergeable PR up to the specified maximum bump type",
|
|
195
|
-
"description": "automatically merge one green, mergeable PR up to the specified maximum bump type",
|
|
196
|
-
"strict": true,
|
|
197
|
-
"pluginName": "@salesforce/plugin-release-management",
|
|
205
|
+
"hasDynamicHelp": false,
|
|
206
|
+
"hiddenAliases": [],
|
|
207
|
+
"id": "cli:releasenotes",
|
|
198
208
|
"pluginAlias": "@salesforce/plugin-release-management",
|
|
209
|
+
"pluginName": "@salesforce/plugin-release-management",
|
|
199
210
|
"pluginType": "core",
|
|
211
|
+
"strict": true,
|
|
212
|
+
"summary": "pull all relevant information for writing release notes.\nRequires the GH_TOKEN to be set in the environment.",
|
|
213
|
+
"enableJsonFlag": true,
|
|
214
|
+
"SF_ENV": "SF_ENV",
|
|
215
|
+
"isESM": false,
|
|
216
|
+
"relativePath": [
|
|
217
|
+
"lib",
|
|
218
|
+
"commands",
|
|
219
|
+
"cli",
|
|
220
|
+
"releasenotes.js"
|
|
221
|
+
]
|
|
222
|
+
},
|
|
223
|
+
"dependabot:automerge": {
|
|
200
224
|
"aliases": [],
|
|
225
|
+
"args": {},
|
|
226
|
+
"description": "automatically merge one green, mergeable PR up to the specified maximum bump type",
|
|
201
227
|
"examples": [
|
|
202
228
|
"<%= config.bin %> <%= command.id %> --max-version-bump patch",
|
|
203
229
|
"<%= config.bin %> <%= command.id %> --max-version-bump minor",
|
|
@@ -205,224 +231,269 @@
|
|
|
205
231
|
],
|
|
206
232
|
"flags": {
|
|
207
233
|
"json": {
|
|
208
|
-
"name": "json",
|
|
209
|
-
"type": "boolean",
|
|
210
234
|
"description": "Format output as json.",
|
|
211
235
|
"helpGroup": "GLOBAL",
|
|
212
|
-
"
|
|
236
|
+
"name": "json",
|
|
237
|
+
"allowNo": false,
|
|
238
|
+
"type": "boolean"
|
|
213
239
|
},
|
|
214
240
|
"owner": {
|
|
215
|
-
"name": "owner",
|
|
216
|
-
"type": "option",
|
|
217
241
|
"char": "o",
|
|
218
|
-
"summary": "the organization that the repository belongs to. This defaults to the owner specified in the package.json",
|
|
219
|
-
"multiple": false,
|
|
220
242
|
"dependsOn": [
|
|
221
243
|
"repo"
|
|
222
|
-
]
|
|
244
|
+
],
|
|
245
|
+
"name": "owner",
|
|
246
|
+
"summary": "the organization that the repository belongs to. This defaults to the owner specified in the package.json",
|
|
247
|
+
"hasDynamicHelp": false,
|
|
248
|
+
"multiple": false,
|
|
249
|
+
"type": "option"
|
|
223
250
|
},
|
|
224
251
|
"repo": {
|
|
225
|
-
"name": "repo",
|
|
226
|
-
"type": "option",
|
|
227
252
|
"char": "r",
|
|
228
|
-
"summary": "the repository you want to consolidate PRs on. This defaults to the repository specified in the package.json",
|
|
229
|
-
"multiple": false,
|
|
230
253
|
"dependsOn": [
|
|
231
254
|
"owner"
|
|
232
|
-
]
|
|
255
|
+
],
|
|
256
|
+
"name": "repo",
|
|
257
|
+
"summary": "the repository you want to consolidate PRs on. This defaults to the repository specified in the package.json",
|
|
258
|
+
"hasDynamicHelp": false,
|
|
259
|
+
"multiple": false,
|
|
260
|
+
"type": "option"
|
|
233
261
|
},
|
|
234
262
|
"max-version-bump": {
|
|
235
|
-
"name": "max-version-bump",
|
|
236
|
-
"type": "option",
|
|
237
263
|
"char": "m",
|
|
238
264
|
"description": "the maximum version bump you want to be included",
|
|
265
|
+
"name": "max-version-bump",
|
|
239
266
|
"required": true,
|
|
267
|
+
"default": "minor",
|
|
268
|
+
"hasDynamicHelp": false,
|
|
240
269
|
"multiple": false,
|
|
241
270
|
"options": [
|
|
242
271
|
"major",
|
|
243
272
|
"minor",
|
|
244
273
|
"patch"
|
|
245
274
|
],
|
|
246
|
-
"
|
|
275
|
+
"type": "option"
|
|
247
276
|
},
|
|
248
277
|
"dryrun": {
|
|
249
|
-
"name": "dryrun",
|
|
250
|
-
"type": "boolean",
|
|
251
278
|
"char": "d",
|
|
279
|
+
"name": "dryrun",
|
|
252
280
|
"summary": "only show what would happen if you consolidated dependabot PRs",
|
|
253
|
-
"allowNo": false
|
|
281
|
+
"allowNo": false,
|
|
282
|
+
"type": "boolean"
|
|
254
283
|
},
|
|
255
284
|
"skip-ci": {
|
|
256
|
-
"name": "skip-ci",
|
|
257
|
-
"type": "boolean",
|
|
258
285
|
"char": "s",
|
|
286
|
+
"name": "skip-ci",
|
|
259
287
|
"summary": "add [skip ci] to the merge commit title",
|
|
260
|
-
"allowNo": false
|
|
288
|
+
"allowNo": false,
|
|
289
|
+
"type": "boolean"
|
|
261
290
|
},
|
|
262
291
|
"merge-method": {
|
|
263
292
|
"name": "merge-method",
|
|
264
|
-
"type": "option",
|
|
265
293
|
"summary": "merge method to use",
|
|
294
|
+
"default": "merge",
|
|
295
|
+
"hasDynamicHelp": false,
|
|
266
296
|
"multiple": false,
|
|
267
297
|
"options": [
|
|
268
298
|
"merge",
|
|
269
299
|
"squash",
|
|
270
300
|
"rebase"
|
|
271
301
|
],
|
|
272
|
-
"
|
|
302
|
+
"type": "option"
|
|
273
303
|
}
|
|
274
304
|
},
|
|
275
|
-
"
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
"id": "repositories",
|
|
279
|
-
"summary": "list repositories owned and supported by Salesforce CLI\nFor more information on the list of repositories, visit https://github.com/salesforcecli/status.",
|
|
280
|
-
"description": "list repositories owned and supported by Salesforce CLI\nFor more information on the list of repositories, visit https://github.com/salesforcecli/status.",
|
|
281
|
-
"strict": true,
|
|
282
|
-
"pluginName": "@salesforce/plugin-release-management",
|
|
305
|
+
"hasDynamicHelp": false,
|
|
306
|
+
"hiddenAliases": [],
|
|
307
|
+
"id": "dependabot:automerge",
|
|
283
308
|
"pluginAlias": "@salesforce/plugin-release-management",
|
|
309
|
+
"pluginName": "@salesforce/plugin-release-management",
|
|
284
310
|
"pluginType": "core",
|
|
311
|
+
"strict": true,
|
|
312
|
+
"summary": "automatically merge one green, mergeable PR up to the specified maximum bump type",
|
|
313
|
+
"enableJsonFlag": true,
|
|
314
|
+
"SF_ENV": "SF_ENV",
|
|
315
|
+
"isESM": false,
|
|
316
|
+
"relativePath": [
|
|
317
|
+
"lib",
|
|
318
|
+
"commands",
|
|
319
|
+
"dependabot",
|
|
320
|
+
"automerge.js"
|
|
321
|
+
]
|
|
322
|
+
},
|
|
323
|
+
"repositories": {
|
|
285
324
|
"aliases": [],
|
|
325
|
+
"args": {},
|
|
326
|
+
"description": "list repositories owned and supported by Salesforce CLI\nFor more information on the list of repositories, visit https://github.com/salesforcecli/status.",
|
|
286
327
|
"examples": [
|
|
287
328
|
"<%= config.bin %> <%= command.id %> --columns=url --filter='Name=sfdx-core' --no-header | xargs open",
|
|
288
329
|
"<%= config.bin %> <%= command.id %> --json | jq -r '.result[] | select(.name==\"sfdx-core\") | .packages[] | .url"
|
|
289
330
|
],
|
|
290
331
|
"flags": {
|
|
291
332
|
"json": {
|
|
292
|
-
"name": "json",
|
|
293
|
-
"type": "boolean",
|
|
294
333
|
"description": "Format output as json.",
|
|
295
334
|
"helpGroup": "GLOBAL",
|
|
296
|
-
"
|
|
335
|
+
"name": "json",
|
|
336
|
+
"allowNo": false,
|
|
337
|
+
"type": "boolean"
|
|
297
338
|
},
|
|
298
339
|
"columns": {
|
|
299
|
-
"name": "columns",
|
|
300
|
-
"type": "option",
|
|
301
340
|
"description": "only show provided columns (comma-separated)",
|
|
302
|
-
"multiple": false,
|
|
303
341
|
"exclusive": [
|
|
304
342
|
"extended"
|
|
305
|
-
]
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
"
|
|
309
|
-
"type": "option"
|
|
310
|
-
"description": "property to sort by (prepend '-' for descending)",
|
|
311
|
-
"multiple": false
|
|
312
|
-
},
|
|
313
|
-
"filter": {
|
|
314
|
-
"name": "filter",
|
|
315
|
-
"type": "option",
|
|
316
|
-
"description": "filter property by partial string matching, ex: name=foo",
|
|
317
|
-
"multiple": false
|
|
343
|
+
],
|
|
344
|
+
"name": "columns",
|
|
345
|
+
"hasDynamicHelp": false,
|
|
346
|
+
"multiple": false,
|
|
347
|
+
"type": "option"
|
|
318
348
|
},
|
|
319
349
|
"csv": {
|
|
320
|
-
"name": "csv",
|
|
321
|
-
"type": "boolean",
|
|
322
350
|
"description": "output is csv format [alias: --output=csv]",
|
|
323
|
-
"allowNo": false,
|
|
324
351
|
"exclusive": [
|
|
325
352
|
"no-truncate"
|
|
326
|
-
]
|
|
327
|
-
},
|
|
328
|
-
"output": {
|
|
329
|
-
"name": "output",
|
|
330
|
-
"type": "option",
|
|
331
|
-
"description": "output in a more machine friendly format",
|
|
332
|
-
"multiple": false,
|
|
333
|
-
"options": [
|
|
334
|
-
"csv",
|
|
335
|
-
"json",
|
|
336
|
-
"yaml"
|
|
337
353
|
],
|
|
338
|
-
"
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
]
|
|
354
|
+
"name": "csv",
|
|
355
|
+
"allowNo": false,
|
|
356
|
+
"type": "boolean"
|
|
342
357
|
},
|
|
343
358
|
"extended": {
|
|
344
|
-
"name": "extended",
|
|
345
|
-
"type": "boolean",
|
|
346
359
|
"char": "x",
|
|
347
360
|
"description": "show extra columns",
|
|
348
|
-
"allowNo": false,
|
|
349
361
|
"exclusive": [
|
|
350
362
|
"columns"
|
|
351
|
-
]
|
|
363
|
+
],
|
|
364
|
+
"name": "extended",
|
|
365
|
+
"allowNo": false,
|
|
366
|
+
"type": "boolean"
|
|
367
|
+
},
|
|
368
|
+
"filter": {
|
|
369
|
+
"description": "filter property by partial string matching, ex: name=foo",
|
|
370
|
+
"name": "filter",
|
|
371
|
+
"hasDynamicHelp": false,
|
|
372
|
+
"multiple": false,
|
|
373
|
+
"type": "option"
|
|
374
|
+
},
|
|
375
|
+
"no-header": {
|
|
376
|
+
"description": "hide table header from output",
|
|
377
|
+
"exclusive": [
|
|
378
|
+
"csv"
|
|
379
|
+
],
|
|
380
|
+
"name": "no-header",
|
|
381
|
+
"allowNo": false,
|
|
382
|
+
"type": "boolean"
|
|
352
383
|
},
|
|
353
384
|
"no-truncate": {
|
|
354
|
-
"name": "no-truncate",
|
|
355
|
-
"type": "boolean",
|
|
356
385
|
"description": "do not truncate output to fit screen",
|
|
357
|
-
"allowNo": false,
|
|
358
386
|
"exclusive": [
|
|
359
387
|
"csv"
|
|
360
|
-
]
|
|
361
|
-
|
|
362
|
-
"no-header": {
|
|
363
|
-
"name": "no-header",
|
|
364
|
-
"type": "boolean",
|
|
365
|
-
"description": "hide table header from output",
|
|
388
|
+
],
|
|
389
|
+
"name": "no-truncate",
|
|
366
390
|
"allowNo": false,
|
|
391
|
+
"type": "boolean"
|
|
392
|
+
},
|
|
393
|
+
"output": {
|
|
394
|
+
"description": "output in a more machine friendly format",
|
|
367
395
|
"exclusive": [
|
|
396
|
+
"no-truncate",
|
|
368
397
|
"csv"
|
|
369
|
-
]
|
|
398
|
+
],
|
|
399
|
+
"name": "output",
|
|
400
|
+
"hasDynamicHelp": false,
|
|
401
|
+
"multiple": false,
|
|
402
|
+
"options": [
|
|
403
|
+
"csv",
|
|
404
|
+
"json",
|
|
405
|
+
"yaml"
|
|
406
|
+
],
|
|
407
|
+
"type": "option"
|
|
408
|
+
},
|
|
409
|
+
"sort": {
|
|
410
|
+
"description": "property to sort by (prepend '-' for descending)",
|
|
411
|
+
"name": "sort",
|
|
412
|
+
"hasDynamicHelp": false,
|
|
413
|
+
"multiple": false,
|
|
414
|
+
"type": "option"
|
|
370
415
|
}
|
|
371
416
|
},
|
|
372
|
-
"
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
"id": "cli:artifacts:compare",
|
|
376
|
-
"summary": "Look for breaking changes in artifacts (schemas and snapshots) from plugins. Must be run in CLI directory.",
|
|
377
|
-
"strict": true,
|
|
378
|
-
"pluginName": "@salesforce/plugin-release-management",
|
|
417
|
+
"hasDynamicHelp": false,
|
|
418
|
+
"hiddenAliases": [],
|
|
419
|
+
"id": "repositories",
|
|
379
420
|
"pluginAlias": "@salesforce/plugin-release-management",
|
|
421
|
+
"pluginName": "@salesforce/plugin-release-management",
|
|
380
422
|
"pluginType": "core",
|
|
423
|
+
"strict": true,
|
|
424
|
+
"summary": "list repositories owned and supported by Salesforce CLI\nFor more information on the list of repositories, visit https://github.com/salesforcecli/status.",
|
|
425
|
+
"enableJsonFlag": true,
|
|
426
|
+
"SF_ENV": "SF_ENV",
|
|
427
|
+
"isESM": false,
|
|
428
|
+
"relativePath": [
|
|
429
|
+
"lib",
|
|
430
|
+
"commands",
|
|
431
|
+
"repositories",
|
|
432
|
+
"index.js"
|
|
433
|
+
]
|
|
434
|
+
},
|
|
435
|
+
"cli:artifacts:compare": {
|
|
381
436
|
"aliases": [],
|
|
437
|
+
"args": {},
|
|
382
438
|
"examples": [
|
|
383
439
|
"<%= config.bin %> <%= command.id %>"
|
|
384
440
|
],
|
|
385
441
|
"flags": {
|
|
386
442
|
"json": {
|
|
387
|
-
"name": "json",
|
|
388
|
-
"type": "boolean",
|
|
389
443
|
"description": "Format output as json.",
|
|
390
444
|
"helpGroup": "GLOBAL",
|
|
391
|
-
"
|
|
445
|
+
"name": "json",
|
|
446
|
+
"allowNo": false,
|
|
447
|
+
"type": "boolean"
|
|
392
448
|
},
|
|
393
449
|
"plugin": {
|
|
394
|
-
"name": "plugin",
|
|
395
|
-
"type": "option",
|
|
396
450
|
"char": "p",
|
|
451
|
+
"name": "plugin",
|
|
397
452
|
"summary": "List of plugins to check for breaking changes.",
|
|
398
|
-
"
|
|
453
|
+
"hasDynamicHelp": false,
|
|
454
|
+
"multiple": true,
|
|
455
|
+
"type": "option"
|
|
399
456
|
},
|
|
400
457
|
"previous": {
|
|
401
|
-
"name": "previous",
|
|
402
|
-
"type": "option",
|
|
403
458
|
"char": "r",
|
|
459
|
+
"name": "previous",
|
|
404
460
|
"summary": "Previous CLI version to compare against. Defaults to the last published version.",
|
|
405
|
-
"
|
|
461
|
+
"hasDynamicHelp": false,
|
|
462
|
+
"multiple": false,
|
|
463
|
+
"type": "option"
|
|
406
464
|
},
|
|
407
465
|
"current": {
|
|
408
|
-
"name": "current",
|
|
409
|
-
"type": "option",
|
|
410
466
|
"char": "c",
|
|
467
|
+
"name": "current",
|
|
411
468
|
"summary": "Current CLI version to compare against. Defaults to the version on the CLI in the current directory.",
|
|
412
|
-
"
|
|
469
|
+
"hasDynamicHelp": false,
|
|
470
|
+
"multiple": false,
|
|
471
|
+
"type": "option"
|
|
413
472
|
}
|
|
414
473
|
},
|
|
415
|
-
"
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
"id": "cli:install:test",
|
|
419
|
-
"summary": "install sf or sfdx",
|
|
420
|
-
"description": "install sf or sfdx",
|
|
421
|
-
"strict": true,
|
|
422
|
-
"pluginName": "@salesforce/plugin-release-management",
|
|
474
|
+
"hasDynamicHelp": false,
|
|
475
|
+
"hiddenAliases": [],
|
|
476
|
+
"id": "cli:artifacts:compare",
|
|
423
477
|
"pluginAlias": "@salesforce/plugin-release-management",
|
|
478
|
+
"pluginName": "@salesforce/plugin-release-management",
|
|
424
479
|
"pluginType": "core",
|
|
480
|
+
"strict": true,
|
|
481
|
+
"summary": "Look for breaking changes in artifacts (schemas and snapshots) from plugins. Must be run in CLI directory.",
|
|
482
|
+
"enableJsonFlag": true,
|
|
483
|
+
"SF_ENV": "SF_ENV",
|
|
484
|
+
"isESM": false,
|
|
485
|
+
"relativePath": [
|
|
486
|
+
"lib",
|
|
487
|
+
"commands",
|
|
488
|
+
"cli",
|
|
489
|
+
"artifacts",
|
|
490
|
+
"compare.js"
|
|
491
|
+
]
|
|
492
|
+
},
|
|
493
|
+
"cli:install:test": {
|
|
425
494
|
"aliases": [],
|
|
495
|
+
"args": {},
|
|
496
|
+
"description": "install sf or sfdx",
|
|
426
497
|
"examples": [
|
|
427
498
|
"<%= config.bin %> <%= command.id %> --cli sfdx --method installer",
|
|
428
499
|
"<%= config.bin %> <%= command.id %> --cli sfdx --method npm",
|
|
@@ -432,41 +503,44 @@
|
|
|
432
503
|
],
|
|
433
504
|
"flags": {
|
|
434
505
|
"json": {
|
|
435
|
-
"name": "json",
|
|
436
|
-
"type": "boolean",
|
|
437
506
|
"description": "Format output as json.",
|
|
438
507
|
"helpGroup": "GLOBAL",
|
|
439
|
-
"
|
|
508
|
+
"name": "json",
|
|
509
|
+
"allowNo": false,
|
|
510
|
+
"type": "boolean"
|
|
440
511
|
},
|
|
441
512
|
"cli": {
|
|
442
|
-
"name": "cli",
|
|
443
|
-
"type": "option",
|
|
444
513
|
"char": "c",
|
|
445
|
-
"
|
|
514
|
+
"name": "cli",
|
|
446
515
|
"required": true,
|
|
516
|
+
"summary": "the cli to install",
|
|
517
|
+
"hasDynamicHelp": false,
|
|
447
518
|
"multiple": false,
|
|
448
519
|
"options": [
|
|
449
520
|
"sf",
|
|
450
521
|
"sfdx"
|
|
451
|
-
]
|
|
522
|
+
],
|
|
523
|
+
"type": "option"
|
|
452
524
|
},
|
|
453
525
|
"method": {
|
|
454
|
-
"name": "method",
|
|
455
|
-
"type": "option",
|
|
456
526
|
"char": "m",
|
|
457
|
-
"
|
|
527
|
+
"name": "method",
|
|
458
528
|
"required": true,
|
|
529
|
+
"summary": "the installation method to use",
|
|
530
|
+
"hasDynamicHelp": false,
|
|
459
531
|
"multiple": false,
|
|
460
532
|
"options": [
|
|
461
533
|
"installer",
|
|
462
534
|
"npm",
|
|
463
535
|
"tarball"
|
|
464
|
-
]
|
|
536
|
+
],
|
|
537
|
+
"type": "option"
|
|
465
538
|
},
|
|
466
539
|
"channel": {
|
|
467
540
|
"name": "channel",
|
|
468
|
-
"type": "option",
|
|
469
541
|
"summary": "the channel to install from",
|
|
542
|
+
"default": "stable",
|
|
543
|
+
"hasDynamicHelp": false,
|
|
470
544
|
"multiple": false,
|
|
471
545
|
"options": [
|
|
472
546
|
"legacy",
|
|
@@ -475,95 +549,123 @@
|
|
|
475
549
|
"latest",
|
|
476
550
|
"latest-rc"
|
|
477
551
|
],
|
|
478
|
-
"
|
|
552
|
+
"type": "option"
|
|
479
553
|
},
|
|
480
554
|
"output-file": {
|
|
481
555
|
"name": "output-file",
|
|
482
|
-
"type": "option",
|
|
483
556
|
"summary": "the file to write the JSON results to (must be .json)",
|
|
557
|
+
"default": "test-results.json",
|
|
558
|
+
"hasDynamicHelp": false,
|
|
484
559
|
"multiple": false,
|
|
485
|
-
"
|
|
560
|
+
"type": "option"
|
|
486
561
|
}
|
|
487
562
|
},
|
|
488
|
-
"
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
"id": "cli:release:automerge",
|
|
492
|
-
"summary": "Attempt to automerge nightly PR",
|
|
493
|
-
"description": "Attempt to automerge nightly PR",
|
|
494
|
-
"strict": true,
|
|
495
|
-
"pluginName": "@salesforce/plugin-release-management",
|
|
563
|
+
"hasDynamicHelp": false,
|
|
564
|
+
"hiddenAliases": [],
|
|
565
|
+
"id": "cli:install:test",
|
|
496
566
|
"pluginAlias": "@salesforce/plugin-release-management",
|
|
567
|
+
"pluginName": "@salesforce/plugin-release-management",
|
|
497
568
|
"pluginType": "core",
|
|
569
|
+
"strict": true,
|
|
570
|
+
"summary": "install sf or sfdx",
|
|
571
|
+
"enableJsonFlag": true,
|
|
572
|
+
"SF_ENV": "SF_ENV",
|
|
573
|
+
"isESM": false,
|
|
574
|
+
"relativePath": [
|
|
575
|
+
"lib",
|
|
576
|
+
"commands",
|
|
577
|
+
"cli",
|
|
578
|
+
"install",
|
|
579
|
+
"test.js"
|
|
580
|
+
]
|
|
581
|
+
},
|
|
582
|
+
"cli:release:automerge": {
|
|
498
583
|
"aliases": [],
|
|
584
|
+
"args": {},
|
|
585
|
+
"description": "Attempt to automerge nightly PR",
|
|
499
586
|
"examples": [
|
|
500
587
|
"<%= config.bin %> <%= command.id %> --owner salesforcecli --repo sfdx-cli --pul-number 1049"
|
|
501
588
|
],
|
|
502
589
|
"flags": {
|
|
503
590
|
"json": {
|
|
504
|
-
"name": "json",
|
|
505
|
-
"type": "boolean",
|
|
506
591
|
"description": "Format output as json.",
|
|
507
592
|
"helpGroup": "GLOBAL",
|
|
508
|
-
"
|
|
593
|
+
"name": "json",
|
|
594
|
+
"allowNo": false,
|
|
595
|
+
"type": "boolean"
|
|
509
596
|
},
|
|
510
597
|
"owner": {
|
|
511
|
-
"
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
"required": true,
|
|
515
|
-
"multiple": false,
|
|
598
|
+
"aliases": [
|
|
599
|
+
"org"
|
|
600
|
+
],
|
|
516
601
|
"dependsOn": [
|
|
517
602
|
"repo"
|
|
518
603
|
],
|
|
519
|
-
"
|
|
520
|
-
|
|
521
|
-
|
|
604
|
+
"name": "owner",
|
|
605
|
+
"required": true,
|
|
606
|
+
"summary": "Github owner (org), example: salesforcecli",
|
|
607
|
+
"hasDynamicHelp": false,
|
|
608
|
+
"multiple": false,
|
|
609
|
+
"type": "option"
|
|
522
610
|
},
|
|
523
611
|
"repo": {
|
|
612
|
+
"dependsOn": [
|
|
613
|
+
"owner"
|
|
614
|
+
],
|
|
524
615
|
"name": "repo",
|
|
525
|
-
"type": "option",
|
|
526
|
-
"summary": "Github repo, example: sfdx-cli",
|
|
527
616
|
"required": true,
|
|
617
|
+
"summary": "Github repo, example: sfdx-cli",
|
|
618
|
+
"hasDynamicHelp": false,
|
|
528
619
|
"multiple": false,
|
|
529
|
-
"
|
|
530
|
-
"owner"
|
|
531
|
-
]
|
|
620
|
+
"type": "option"
|
|
532
621
|
},
|
|
533
622
|
"pull-number": {
|
|
534
623
|
"name": "pull-number",
|
|
535
|
-
"type": "option",
|
|
536
|
-
"summary": "Github pull request number to merge",
|
|
537
624
|
"required": true,
|
|
538
|
-
"
|
|
625
|
+
"summary": "Github pull request number to merge",
|
|
626
|
+
"hasDynamicHelp": false,
|
|
627
|
+
"multiple": false,
|
|
628
|
+
"type": "option"
|
|
539
629
|
},
|
|
540
630
|
"dry-run": {
|
|
541
|
-
"name": "dry-run",
|
|
542
|
-
"type": "boolean",
|
|
543
631
|
"char": "d",
|
|
632
|
+
"name": "dry-run",
|
|
544
633
|
"summary": "Run all checks, but do not merge PR",
|
|
545
|
-
"allowNo": false
|
|
634
|
+
"allowNo": false,
|
|
635
|
+
"type": "boolean"
|
|
546
636
|
},
|
|
547
637
|
"verbose": {
|
|
548
638
|
"name": "verbose",
|
|
549
|
-
"type": "boolean",
|
|
550
639
|
"summary": "Show additional debug output",
|
|
551
|
-
"allowNo": false
|
|
640
|
+
"allowNo": false,
|
|
641
|
+
"type": "boolean"
|
|
552
642
|
}
|
|
553
643
|
},
|
|
554
|
-
"
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
"id": "cli:release:build",
|
|
558
|
-
"summary": "builds a new release from a designated starting point and optionally creates PR in Github",
|
|
559
|
-
"description": "builds a new release from a designated starting point and optionally creates PR in Github",
|
|
560
|
-
"strict": true,
|
|
561
|
-
"pluginName": "@salesforce/plugin-release-management",
|
|
644
|
+
"hasDynamicHelp": false,
|
|
645
|
+
"hiddenAliases": [],
|
|
646
|
+
"id": "cli:release:automerge",
|
|
562
647
|
"pluginAlias": "@salesforce/plugin-release-management",
|
|
648
|
+
"pluginName": "@salesforce/plugin-release-management",
|
|
563
649
|
"pluginType": "core",
|
|
650
|
+
"strict": true,
|
|
651
|
+
"summary": "Attempt to automerge nightly PR",
|
|
652
|
+
"enableJsonFlag": true,
|
|
653
|
+
"SF_ENV": "SF_ENV",
|
|
654
|
+
"isESM": false,
|
|
655
|
+
"relativePath": [
|
|
656
|
+
"lib",
|
|
657
|
+
"commands",
|
|
658
|
+
"cli",
|
|
659
|
+
"release",
|
|
660
|
+
"automerge.js"
|
|
661
|
+
]
|
|
662
|
+
},
|
|
663
|
+
"cli:release:build": {
|
|
564
664
|
"aliases": [
|
|
565
665
|
"cli:latestrc:build"
|
|
566
666
|
],
|
|
667
|
+
"args": {},
|
|
668
|
+
"description": "builds a new release from a designated starting point and optionally creates PR in Github",
|
|
567
669
|
"examples": [
|
|
568
670
|
"<%= config.bin %> <%= command.id %>",
|
|
569
671
|
"<%= config.bin %> <%= command.id %> --patch",
|
|
@@ -577,201 +679,256 @@
|
|
|
577
679
|
],
|
|
578
680
|
"flags": {
|
|
579
681
|
"json": {
|
|
580
|
-
"name": "json",
|
|
581
|
-
"type": "boolean",
|
|
582
682
|
"description": "Format output as json.",
|
|
583
683
|
"helpGroup": "GLOBAL",
|
|
584
|
-
"
|
|
684
|
+
"name": "json",
|
|
685
|
+
"allowNo": false,
|
|
686
|
+
"type": "boolean"
|
|
585
687
|
},
|
|
586
688
|
"start-from-npm-dist-tag": {
|
|
587
|
-
"
|
|
588
|
-
|
|
689
|
+
"aliases": [
|
|
690
|
+
"rctag"
|
|
691
|
+
],
|
|
589
692
|
"char": "d",
|
|
693
|
+
"deprecateAliases": true,
|
|
694
|
+
"name": "start-from-npm-dist-tag",
|
|
590
695
|
"summary": "the npm dist-tag to start the release from, examples: nightly, latest-rc",
|
|
696
|
+
"hasDynamicHelp": false,
|
|
591
697
|
"multiple": false,
|
|
592
|
-
"
|
|
593
|
-
"rctag"
|
|
594
|
-
]
|
|
698
|
+
"type": "option"
|
|
595
699
|
},
|
|
596
700
|
"start-from-github-ref": {
|
|
597
|
-
"name": "start-from-github-ref",
|
|
598
|
-
"type": "option",
|
|
599
701
|
"char": "g",
|
|
702
|
+
"name": "start-from-github-ref",
|
|
600
703
|
"summary": "a Github ref to start the release from, examples: main, 7.144.0, f476e8e",
|
|
601
|
-
"
|
|
704
|
+
"hasDynamicHelp": false,
|
|
705
|
+
"multiple": false,
|
|
706
|
+
"type": "option"
|
|
602
707
|
},
|
|
603
708
|
"release-channel": {
|
|
604
|
-
"name": "release-channel",
|
|
605
|
-
"type": "option",
|
|
606
709
|
"char": "c",
|
|
607
|
-
"
|
|
710
|
+
"name": "release-channel",
|
|
608
711
|
"required": true,
|
|
609
|
-
"
|
|
712
|
+
"summary": "the channel intended for this release, examples: nightly, latest-rc, latest, dev, beta, etc...",
|
|
713
|
+
"hasDynamicHelp": false,
|
|
714
|
+
"multiple": false,
|
|
715
|
+
"type": "option"
|
|
610
716
|
},
|
|
611
717
|
"build-only": {
|
|
612
718
|
"name": "build-only",
|
|
613
|
-
"type": "boolean",
|
|
614
719
|
"summary": "only build the release, do not git add/commit/push",
|
|
615
|
-
"allowNo": false
|
|
720
|
+
"allowNo": false,
|
|
721
|
+
"type": "boolean"
|
|
616
722
|
},
|
|
617
723
|
"resolutions": {
|
|
618
724
|
"name": "resolutions",
|
|
619
|
-
"type": "boolean",
|
|
620
725
|
"summary": "bump the versions of packages listed in the resolutions section",
|
|
621
|
-
"allowNo": true
|
|
726
|
+
"allowNo": true,
|
|
727
|
+
"type": "boolean"
|
|
622
728
|
},
|
|
623
729
|
"only": {
|
|
624
730
|
"name": "only",
|
|
625
|
-
"type": "option",
|
|
626
731
|
"summary": "only bump the version of the packages passed in, uses latest if version is not provided",
|
|
732
|
+
"delimiter": ",",
|
|
733
|
+
"hasDynamicHelp": false,
|
|
627
734
|
"multiple": true,
|
|
628
|
-
"
|
|
735
|
+
"type": "option"
|
|
629
736
|
},
|
|
630
737
|
"pinned-deps": {
|
|
631
738
|
"name": "pinned-deps",
|
|
632
|
-
"type": "boolean",
|
|
633
739
|
"summary": "bump the versions of the packages listed in the pinnedDependencies section",
|
|
634
|
-
"allowNo": true
|
|
740
|
+
"allowNo": true,
|
|
741
|
+
"type": "boolean"
|
|
635
742
|
},
|
|
636
743
|
"jit": {
|
|
637
744
|
"name": "jit",
|
|
638
|
-
"type": "boolean",
|
|
639
745
|
"summary": "bump the versions of the packages listed in the jitPlugins (just-in-time) section",
|
|
640
|
-
"allowNo": true
|
|
746
|
+
"allowNo": true,
|
|
747
|
+
"type": "boolean"
|
|
641
748
|
},
|
|
642
749
|
"label": {
|
|
643
750
|
"name": "label",
|
|
644
|
-
"type": "option",
|
|
645
751
|
"summary": "add one or more labels to the Github PR",
|
|
646
|
-
"
|
|
752
|
+
"hasDynamicHelp": false,
|
|
753
|
+
"multiple": true,
|
|
754
|
+
"type": "option"
|
|
647
755
|
},
|
|
648
756
|
"patch": {
|
|
649
757
|
"name": "patch",
|
|
650
|
-
"type": "boolean",
|
|
651
758
|
"summary": "bump the release as a patch of an existing version, not a new minor version",
|
|
652
|
-
"allowNo": false
|
|
759
|
+
"allowNo": false,
|
|
760
|
+
"type": "boolean"
|
|
653
761
|
},
|
|
654
762
|
"empty": {
|
|
655
763
|
"name": "empty",
|
|
656
|
-
"type": "boolean",
|
|
657
764
|
"summary": "create an empty release PR for pushing changes to later (version will still be bumped)",
|
|
658
|
-
"allowNo": false
|
|
765
|
+
"allowNo": false,
|
|
766
|
+
"type": "boolean"
|
|
659
767
|
},
|
|
660
768
|
"pr-base-branch": {
|
|
661
769
|
"name": "pr-base-branch",
|
|
662
|
-
"type": "option",
|
|
663
770
|
"summary": "base branch to create the PR against; if not specified, the build determines the branch for you",
|
|
664
|
-
"
|
|
771
|
+
"hasDynamicHelp": false,
|
|
772
|
+
"multiple": false,
|
|
773
|
+
"type": "option"
|
|
665
774
|
}
|
|
666
775
|
},
|
|
667
|
-
"
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
"id": "cli:schemas:compare",
|
|
671
|
-
"summary": "compare schemas from installed plugins",
|
|
672
|
-
"description": "compare schemas from installed plugins",
|
|
673
|
-
"strict": true,
|
|
674
|
-
"pluginName": "@salesforce/plugin-release-management",
|
|
776
|
+
"hasDynamicHelp": false,
|
|
777
|
+
"hiddenAliases": [],
|
|
778
|
+
"id": "cli:release:build",
|
|
675
779
|
"pluginAlias": "@salesforce/plugin-release-management",
|
|
780
|
+
"pluginName": "@salesforce/plugin-release-management",
|
|
676
781
|
"pluginType": "core",
|
|
677
|
-
"
|
|
782
|
+
"strict": true,
|
|
783
|
+
"summary": "builds a new release from a designated starting point and optionally creates PR in Github",
|
|
784
|
+
"enableJsonFlag": true,
|
|
785
|
+
"SF_ENV": "SF_ENV",
|
|
786
|
+
"isESM": false,
|
|
787
|
+
"relativePath": [
|
|
788
|
+
"lib",
|
|
789
|
+
"commands",
|
|
790
|
+
"cli",
|
|
791
|
+
"release",
|
|
792
|
+
"build.js"
|
|
793
|
+
]
|
|
794
|
+
},
|
|
795
|
+
"cli:schemas:compare": {
|
|
678
796
|
"aliases": [],
|
|
797
|
+
"args": {},
|
|
798
|
+
"description": "compare schemas from installed plugins",
|
|
679
799
|
"examples": [
|
|
680
800
|
"<%= config.bin %> <%= command.id %>"
|
|
681
801
|
],
|
|
682
802
|
"flags": {
|
|
683
803
|
"json": {
|
|
684
|
-
"name": "json",
|
|
685
|
-
"type": "boolean",
|
|
686
804
|
"description": "Format output as json.",
|
|
687
805
|
"helpGroup": "GLOBAL",
|
|
688
|
-
"
|
|
806
|
+
"name": "json",
|
|
807
|
+
"allowNo": false,
|
|
808
|
+
"type": "boolean"
|
|
689
809
|
}
|
|
690
810
|
},
|
|
691
|
-
"
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
"id": "cli:tarballs:prepare",
|
|
695
|
-
"summary": "remove unnecessary files from node_modules",
|
|
696
|
-
"description": "remove unnecessary files from node_modules",
|
|
697
|
-
"strict": true,
|
|
698
|
-
"pluginName": "@salesforce/plugin-release-management",
|
|
811
|
+
"hasDynamicHelp": false,
|
|
812
|
+
"hiddenAliases": [],
|
|
813
|
+
"id": "cli:schemas:compare",
|
|
699
814
|
"pluginAlias": "@salesforce/plugin-release-management",
|
|
815
|
+
"pluginName": "@salesforce/plugin-release-management",
|
|
700
816
|
"pluginType": "core",
|
|
817
|
+
"state": "deprecated",
|
|
818
|
+
"strict": true,
|
|
819
|
+
"summary": "compare schemas from installed plugins",
|
|
820
|
+
"enableJsonFlag": true,
|
|
821
|
+
"SF_ENV": "SF_ENV",
|
|
822
|
+
"isESM": false,
|
|
823
|
+
"relativePath": [
|
|
824
|
+
"lib",
|
|
825
|
+
"commands",
|
|
826
|
+
"cli",
|
|
827
|
+
"schemas",
|
|
828
|
+
"compare.js"
|
|
829
|
+
]
|
|
830
|
+
},
|
|
831
|
+
"cli:tarballs:prepare": {
|
|
701
832
|
"aliases": [],
|
|
833
|
+
"args": {},
|
|
834
|
+
"description": "remove unnecessary files from node_modules",
|
|
702
835
|
"examples": [
|
|
703
836
|
"<%= config.bin %> <%= command.id %>"
|
|
704
837
|
],
|
|
705
838
|
"flags": {
|
|
706
839
|
"json": {
|
|
707
|
-
"name": "json",
|
|
708
|
-
"type": "boolean",
|
|
709
840
|
"description": "Format output as json.",
|
|
710
841
|
"helpGroup": "GLOBAL",
|
|
711
|
-
"
|
|
842
|
+
"name": "json",
|
|
843
|
+
"allowNo": false,
|
|
844
|
+
"type": "boolean"
|
|
712
845
|
},
|
|
713
846
|
"dryrun": {
|
|
714
|
-
"name": "dryrun",
|
|
715
|
-
"type": "boolean",
|
|
716
847
|
"char": "d",
|
|
848
|
+
"name": "dryrun",
|
|
717
849
|
"summary": "only show what would be removed from node_modules",
|
|
718
|
-
"allowNo": false
|
|
850
|
+
"allowNo": false,
|
|
851
|
+
"type": "boolean"
|
|
719
852
|
},
|
|
720
853
|
"types": {
|
|
721
|
-
"name": "types",
|
|
722
|
-
"type": "boolean",
|
|
723
854
|
"char": "t",
|
|
855
|
+
"name": "types",
|
|
724
856
|
"summary": "remove all types (.d.ts) files from node_modules",
|
|
725
|
-
"allowNo": false
|
|
857
|
+
"allowNo": false,
|
|
858
|
+
"type": "boolean"
|
|
726
859
|
},
|
|
727
860
|
"verbose": {
|
|
728
861
|
"name": "verbose",
|
|
729
|
-
"type": "boolean",
|
|
730
862
|
"summary": "show all files paths being removed",
|
|
731
|
-
"allowNo": false
|
|
863
|
+
"allowNo": false,
|
|
864
|
+
"type": "boolean"
|
|
732
865
|
}
|
|
733
866
|
},
|
|
734
|
-
"
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
"id": "cli:tarballs:smoke",
|
|
738
|
-
"summary": "smoke tests for the sf CLI\nTests that the CLI and every command can be initialized.",
|
|
739
|
-
"description": "smoke tests for the sf CLI\nTests that the CLI and every command can be initialized.",
|
|
740
|
-
"strict": true,
|
|
741
|
-
"pluginName": "@salesforce/plugin-release-management",
|
|
867
|
+
"hasDynamicHelp": false,
|
|
868
|
+
"hiddenAliases": [],
|
|
869
|
+
"id": "cli:tarballs:prepare",
|
|
742
870
|
"pluginAlias": "@salesforce/plugin-release-management",
|
|
871
|
+
"pluginName": "@salesforce/plugin-release-management",
|
|
743
872
|
"pluginType": "core",
|
|
873
|
+
"strict": true,
|
|
874
|
+
"summary": "remove unnecessary files from node_modules",
|
|
875
|
+
"enableJsonFlag": true,
|
|
876
|
+
"SF_ENV": "SF_ENV",
|
|
877
|
+
"isESM": false,
|
|
878
|
+
"relativePath": [
|
|
879
|
+
"lib",
|
|
880
|
+
"commands",
|
|
881
|
+
"cli",
|
|
882
|
+
"tarballs",
|
|
883
|
+
"prepare.js"
|
|
884
|
+
]
|
|
885
|
+
},
|
|
886
|
+
"cli:tarballs:smoke": {
|
|
744
887
|
"aliases": [],
|
|
888
|
+
"args": {},
|
|
889
|
+
"description": "smoke tests for the sf CLI\nTests that the CLI and every command can be initialized.",
|
|
745
890
|
"examples": [
|
|
746
891
|
"<%= config.bin %> <%= command.id %>",
|
|
747
892
|
"<%= config.bin %> <%= command.id %>"
|
|
748
893
|
],
|
|
749
894
|
"flags": {
|
|
750
895
|
"json": {
|
|
751
|
-
"name": "json",
|
|
752
|
-
"type": "boolean",
|
|
753
896
|
"description": "Format output as json.",
|
|
754
897
|
"helpGroup": "GLOBAL",
|
|
755
|
-
"
|
|
898
|
+
"name": "json",
|
|
899
|
+
"allowNo": false,
|
|
900
|
+
"type": "boolean"
|
|
756
901
|
},
|
|
757
902
|
"verbose": {
|
|
758
903
|
"name": "verbose",
|
|
759
|
-
"type": "boolean",
|
|
760
904
|
"summary": "show the --help output for each command",
|
|
761
|
-
"allowNo": false
|
|
905
|
+
"allowNo": false,
|
|
906
|
+
"type": "boolean"
|
|
762
907
|
}
|
|
763
908
|
},
|
|
764
|
-
"
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
"id": "cli:tarballs:verify",
|
|
768
|
-
"summary": "verify that tarballs are ready to be uploaded",
|
|
769
|
-
"description": "verify that tarballs are ready to be uploaded",
|
|
770
|
-
"strict": true,
|
|
771
|
-
"pluginName": "@salesforce/plugin-release-management",
|
|
909
|
+
"hasDynamicHelp": false,
|
|
910
|
+
"hiddenAliases": [],
|
|
911
|
+
"id": "cli:tarballs:smoke",
|
|
772
912
|
"pluginAlias": "@salesforce/plugin-release-management",
|
|
913
|
+
"pluginName": "@salesforce/plugin-release-management",
|
|
773
914
|
"pluginType": "core",
|
|
915
|
+
"strict": true,
|
|
916
|
+
"summary": "smoke tests for the sf CLI\nTests that the CLI and every command can be initialized.",
|
|
917
|
+
"enableJsonFlag": true,
|
|
918
|
+
"SF_ENV": "SF_ENV",
|
|
919
|
+
"isESM": false,
|
|
920
|
+
"relativePath": [
|
|
921
|
+
"lib",
|
|
922
|
+
"commands",
|
|
923
|
+
"cli",
|
|
924
|
+
"tarballs",
|
|
925
|
+
"smoke.js"
|
|
926
|
+
]
|
|
927
|
+
},
|
|
928
|
+
"cli:tarballs:verify": {
|
|
774
929
|
"aliases": [],
|
|
930
|
+
"args": {},
|
|
931
|
+
"description": "verify that tarballs are ready to be uploaded",
|
|
775
932
|
"examples": [
|
|
776
933
|
"<%= config.bin %> <%= command.id %>",
|
|
777
934
|
"<%= config.bin %> <%= command.id %> --cli sfdx",
|
|
@@ -779,44 +936,58 @@
|
|
|
779
936
|
],
|
|
780
937
|
"flags": {
|
|
781
938
|
"json": {
|
|
782
|
-
"name": "json",
|
|
783
|
-
"type": "boolean",
|
|
784
939
|
"description": "Format output as json.",
|
|
785
940
|
"helpGroup": "GLOBAL",
|
|
786
|
-
"
|
|
941
|
+
"name": "json",
|
|
942
|
+
"allowNo": false,
|
|
943
|
+
"type": "boolean"
|
|
787
944
|
},
|
|
788
945
|
"cli": {
|
|
789
|
-
"name": "cli",
|
|
790
|
-
"type": "option",
|
|
791
946
|
"char": "c",
|
|
947
|
+
"name": "cli",
|
|
792
948
|
"summary": "the cli to verify",
|
|
949
|
+
"default": "sfdx",
|
|
950
|
+
"hasDynamicHelp": false,
|
|
793
951
|
"multiple": false,
|
|
794
952
|
"options": [
|
|
795
953
|
"sf",
|
|
796
954
|
"sfdx"
|
|
797
955
|
],
|
|
798
|
-
"
|
|
956
|
+
"type": "option"
|
|
799
957
|
},
|
|
800
958
|
"windows-username-buffer": {
|
|
801
|
-
"name": "windows-username-buffer",
|
|
802
|
-
"type": "option",
|
|
803
959
|
"char": "w",
|
|
960
|
+
"name": "windows-username-buffer",
|
|
804
961
|
"summary": "the number of characters to allow for windows usernames",
|
|
962
|
+
"default": 41,
|
|
963
|
+
"hasDynamicHelp": false,
|
|
805
964
|
"multiple": false,
|
|
806
|
-
"
|
|
965
|
+
"type": "option"
|
|
807
966
|
}
|
|
808
967
|
},
|
|
809
|
-
"
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
"id": "cli:versions:inspect",
|
|
813
|
-
"summary": "inspect the CLI version across all install paths",
|
|
814
|
-
"description": "inspect the CLI version across all install paths",
|
|
815
|
-
"strict": true,
|
|
816
|
-
"pluginName": "@salesforce/plugin-release-management",
|
|
968
|
+
"hasDynamicHelp": false,
|
|
969
|
+
"hiddenAliases": [],
|
|
970
|
+
"id": "cli:tarballs:verify",
|
|
817
971
|
"pluginAlias": "@salesforce/plugin-release-management",
|
|
972
|
+
"pluginName": "@salesforce/plugin-release-management",
|
|
818
973
|
"pluginType": "core",
|
|
974
|
+
"strict": true,
|
|
975
|
+
"summary": "verify that tarballs are ready to be uploaded",
|
|
976
|
+
"enableJsonFlag": true,
|
|
977
|
+
"SF_ENV": "SF_ENV",
|
|
978
|
+
"isESM": false,
|
|
979
|
+
"relativePath": [
|
|
980
|
+
"lib",
|
|
981
|
+
"commands",
|
|
982
|
+
"cli",
|
|
983
|
+
"tarballs",
|
|
984
|
+
"verify.js"
|
|
985
|
+
]
|
|
986
|
+
},
|
|
987
|
+
"cli:versions:inspect": {
|
|
819
988
|
"aliases": [],
|
|
989
|
+
"args": {},
|
|
990
|
+
"description": "inspect the CLI version across all install paths",
|
|
820
991
|
"examples": [
|
|
821
992
|
"<%= config.bin %> <%= command.id %> -l archive -c stable",
|
|
822
993
|
"<%= config.bin %> <%= command.id %> -l archive -c stable-rc",
|
|
@@ -831,32 +1002,33 @@
|
|
|
831
1002
|
],
|
|
832
1003
|
"flags": {
|
|
833
1004
|
"json": {
|
|
834
|
-
"name": "json",
|
|
835
|
-
"type": "boolean",
|
|
836
1005
|
"description": "Format output as json.",
|
|
837
1006
|
"helpGroup": "GLOBAL",
|
|
838
|
-
"
|
|
1007
|
+
"name": "json",
|
|
1008
|
+
"allowNo": false,
|
|
1009
|
+
"type": "boolean"
|
|
839
1010
|
},
|
|
840
1011
|
"dependencies": {
|
|
841
|
-
"name": "dependencies",
|
|
842
|
-
"type": "option",
|
|
843
1012
|
"char": "d",
|
|
1013
|
+
"name": "dependencies",
|
|
844
1014
|
"summary": "glob pattern of dependencies you want to see the version of",
|
|
845
|
-
"
|
|
1015
|
+
"hasDynamicHelp": false,
|
|
1016
|
+
"multiple": true,
|
|
1017
|
+
"type": "option"
|
|
846
1018
|
},
|
|
847
1019
|
"salesforce": {
|
|
848
|
-
"name": "salesforce",
|
|
849
|
-
"type": "boolean",
|
|
850
1020
|
"char": "s",
|
|
1021
|
+
"name": "salesforce",
|
|
851
1022
|
"summary": "show versions of salesforce owned dependencies",
|
|
852
|
-
"allowNo": false
|
|
1023
|
+
"allowNo": false,
|
|
1024
|
+
"type": "boolean"
|
|
853
1025
|
},
|
|
854
1026
|
"channels": {
|
|
855
|
-
"name": "channels",
|
|
856
|
-
"type": "option",
|
|
857
1027
|
"char": "c",
|
|
858
|
-
"
|
|
1028
|
+
"name": "channels",
|
|
859
1029
|
"required": true,
|
|
1030
|
+
"summary": "the channel you want to inspect (for achives, latest and latest-rc are translated to stable and stable-rc. And vice-versa for npm)",
|
|
1031
|
+
"hasDynamicHelp": false,
|
|
860
1032
|
"multiple": true,
|
|
861
1033
|
"options": [
|
|
862
1034
|
"legacy",
|
|
@@ -865,211 +1037,290 @@
|
|
|
865
1037
|
"latest",
|
|
866
1038
|
"latest-rc",
|
|
867
1039
|
"nightly"
|
|
868
|
-
]
|
|
1040
|
+
],
|
|
1041
|
+
"type": "option"
|
|
869
1042
|
},
|
|
870
1043
|
"locations": {
|
|
871
|
-
"name": "locations",
|
|
872
|
-
"type": "option",
|
|
873
1044
|
"char": "l",
|
|
874
|
-
"
|
|
1045
|
+
"name": "locations",
|
|
875
1046
|
"required": true,
|
|
1047
|
+
"summary": "the location you want to inspect",
|
|
1048
|
+
"hasDynamicHelp": false,
|
|
876
1049
|
"multiple": true,
|
|
877
1050
|
"options": [
|
|
878
1051
|
"archive",
|
|
879
1052
|
"npm"
|
|
880
|
-
]
|
|
1053
|
+
],
|
|
1054
|
+
"type": "option"
|
|
881
1055
|
},
|
|
882
1056
|
"cli": {
|
|
883
1057
|
"name": "cli",
|
|
884
|
-
"type": "option",
|
|
885
|
-
"summary": "the CLI you want to inspect",
|
|
886
1058
|
"required": true,
|
|
1059
|
+
"summary": "the CLI you want to inspect",
|
|
1060
|
+
"default": "sfdx",
|
|
1061
|
+
"hasDynamicHelp": false,
|
|
887
1062
|
"multiple": false,
|
|
888
1063
|
"options": [
|
|
889
1064
|
"sf",
|
|
890
1065
|
"sfdx"
|
|
891
1066
|
],
|
|
892
|
-
"
|
|
1067
|
+
"type": "option"
|
|
893
1068
|
}
|
|
894
1069
|
},
|
|
895
|
-
"
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
"id": "github:check:closed",
|
|
899
|
-
"summary": "Show open Github issues with GUS WI",
|
|
900
|
-
"description": "Description of a command.",
|
|
901
|
-
"strict": true,
|
|
902
|
-
"pluginName": "@salesforce/plugin-release-management",
|
|
1070
|
+
"hasDynamicHelp": false,
|
|
1071
|
+
"hiddenAliases": [],
|
|
1072
|
+
"id": "cli:versions:inspect",
|
|
903
1073
|
"pluginAlias": "@salesforce/plugin-release-management",
|
|
1074
|
+
"pluginName": "@salesforce/plugin-release-management",
|
|
904
1075
|
"pluginType": "core",
|
|
1076
|
+
"strict": true,
|
|
1077
|
+
"summary": "inspect the CLI version across all install paths",
|
|
1078
|
+
"enableJsonFlag": true,
|
|
1079
|
+
"SF_ENV": "SF_ENV",
|
|
1080
|
+
"isESM": false,
|
|
1081
|
+
"relativePath": [
|
|
1082
|
+
"lib",
|
|
1083
|
+
"commands",
|
|
1084
|
+
"cli",
|
|
1085
|
+
"versions",
|
|
1086
|
+
"inspect.js"
|
|
1087
|
+
]
|
|
1088
|
+
},
|
|
1089
|
+
"github:check:closed": {
|
|
905
1090
|
"aliases": [],
|
|
1091
|
+
"args": {},
|
|
1092
|
+
"description": "Description of a command.",
|
|
906
1093
|
"examples": [
|
|
907
1094
|
"<%= config.bin %> <%= command.id %> -o me@gus.com"
|
|
908
1095
|
],
|
|
909
1096
|
"flags": {
|
|
910
1097
|
"json": {
|
|
911
|
-
"name": "json",
|
|
912
|
-
"type": "boolean",
|
|
913
1098
|
"description": "Format output as json.",
|
|
914
1099
|
"helpGroup": "GLOBAL",
|
|
915
|
-
"
|
|
1100
|
+
"name": "json",
|
|
1101
|
+
"allowNo": false,
|
|
1102
|
+
"type": "boolean"
|
|
916
1103
|
},
|
|
917
1104
|
"gus": {
|
|
918
|
-
"name": "gus",
|
|
919
|
-
"type": "option",
|
|
920
1105
|
"char": "o",
|
|
921
|
-
"
|
|
1106
|
+
"name": "gus",
|
|
1107
|
+
"noCacheDefault": true,
|
|
922
1108
|
"required": true,
|
|
923
|
-
"
|
|
1109
|
+
"summary": "Username/alias of your GUS org connection",
|
|
1110
|
+
"hasDynamicHelp": true,
|
|
1111
|
+
"multiple": false,
|
|
1112
|
+
"type": "option"
|
|
924
1113
|
},
|
|
925
1114
|
"github-token": {
|
|
1115
|
+
"env": "GITHUB_TOKEN",
|
|
926
1116
|
"name": "github-token",
|
|
927
|
-
"type": "option",
|
|
928
|
-
"summary": "Github token--store this in the environment as GITHUB_TOKEN",
|
|
929
1117
|
"required": true,
|
|
930
|
-
"
|
|
1118
|
+
"summary": "Github token--store this in the environment as GITHUB_TOKEN",
|
|
1119
|
+
"hasDynamicHelp": false,
|
|
1120
|
+
"multiple": false,
|
|
1121
|
+
"type": "option"
|
|
931
1122
|
}
|
|
932
1123
|
},
|
|
933
|
-
"
|
|
934
|
-
"
|
|
935
|
-
|
|
936
|
-
"npm:dependencies:pin": {
|
|
937
|
-
"id": "npm:dependencies:pin",
|
|
938
|
-
"summary": "lock a list of dependencies to a target tag or default to 'latest', place these entries in 'pinnedDependencies' entry in the package.json",
|
|
939
|
-
"description": "lock a list of dependencies to a target tag or default to 'latest', place these entries in 'pinnedDependencies' entry in the package.json",
|
|
940
|
-
"strict": true,
|
|
941
|
-
"pluginName": "@salesforce/plugin-release-management",
|
|
1124
|
+
"hasDynamicHelp": true,
|
|
1125
|
+
"hiddenAliases": [],
|
|
1126
|
+
"id": "github:check:closed",
|
|
942
1127
|
"pluginAlias": "@salesforce/plugin-release-management",
|
|
1128
|
+
"pluginName": "@salesforce/plugin-release-management",
|
|
943
1129
|
"pluginType": "core",
|
|
1130
|
+
"strict": true,
|
|
1131
|
+
"summary": "Show open Github issues with GUS WI",
|
|
1132
|
+
"enableJsonFlag": true,
|
|
1133
|
+
"SF_ENV": "SF_ENV",
|
|
1134
|
+
"isESM": false,
|
|
1135
|
+
"relativePath": [
|
|
1136
|
+
"lib",
|
|
1137
|
+
"commands",
|
|
1138
|
+
"github",
|
|
1139
|
+
"check",
|
|
1140
|
+
"closed.js"
|
|
1141
|
+
]
|
|
1142
|
+
},
|
|
1143
|
+
"npm:dependencies:pin": {
|
|
944
1144
|
"aliases": [],
|
|
1145
|
+
"args": {},
|
|
1146
|
+
"description": "lock a list of dependencies to a target tag or default to 'latest', place these entries in 'pinnedDependencies' entry in the package.json",
|
|
945
1147
|
"flags": {
|
|
946
1148
|
"json": {
|
|
947
|
-
"name": "json",
|
|
948
|
-
"type": "boolean",
|
|
949
1149
|
"description": "Format output as json.",
|
|
950
1150
|
"helpGroup": "GLOBAL",
|
|
951
|
-
"
|
|
1151
|
+
"name": "json",
|
|
1152
|
+
"allowNo": false,
|
|
1153
|
+
"type": "boolean"
|
|
952
1154
|
},
|
|
953
1155
|
"dryrun": {
|
|
954
|
-
"name": "dryrun",
|
|
955
|
-
"type": "boolean",
|
|
956
1156
|
"char": "d",
|
|
1157
|
+
"name": "dryrun",
|
|
957
1158
|
"summary": "If true, will not make any changes to the package.json",
|
|
958
|
-
"allowNo": false
|
|
1159
|
+
"allowNo": false,
|
|
1160
|
+
"type": "boolean"
|
|
959
1161
|
},
|
|
960
1162
|
"tag": {
|
|
961
|
-
"name": "tag",
|
|
962
|
-
"type": "option",
|
|
963
1163
|
"char": "t",
|
|
1164
|
+
"name": "tag",
|
|
964
1165
|
"summary": "The name of the tag you want, e.g. 'latest-rc', or 'latest'",
|
|
1166
|
+
"default": "latest",
|
|
1167
|
+
"hasDynamicHelp": false,
|
|
965
1168
|
"multiple": false,
|
|
966
|
-
"
|
|
1169
|
+
"type": "option"
|
|
967
1170
|
}
|
|
968
1171
|
},
|
|
969
|
-
"
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
"id": "npm:package:release",
|
|
973
|
-
"summary": "publish npm package",
|
|
974
|
-
"description": "publish npm package",
|
|
975
|
-
"strict": true,
|
|
976
|
-
"pluginName": "@salesforce/plugin-release-management",
|
|
1172
|
+
"hasDynamicHelp": false,
|
|
1173
|
+
"hiddenAliases": [],
|
|
1174
|
+
"id": "npm:dependencies:pin",
|
|
977
1175
|
"pluginAlias": "@salesforce/plugin-release-management",
|
|
1176
|
+
"pluginName": "@salesforce/plugin-release-management",
|
|
978
1177
|
"pluginType": "core",
|
|
1178
|
+
"strict": true,
|
|
1179
|
+
"summary": "lock a list of dependencies to a target tag or default to 'latest', place these entries in 'pinnedDependencies' entry in the package.json",
|
|
1180
|
+
"enableJsonFlag": true,
|
|
1181
|
+
"SF_ENV": "SF_ENV",
|
|
1182
|
+
"isESM": false,
|
|
1183
|
+
"relativePath": [
|
|
1184
|
+
"lib",
|
|
1185
|
+
"commands",
|
|
1186
|
+
"npm",
|
|
1187
|
+
"dependencies",
|
|
1188
|
+
"pin.js"
|
|
1189
|
+
]
|
|
1190
|
+
},
|
|
1191
|
+
"npm:package:release": {
|
|
979
1192
|
"aliases": [],
|
|
1193
|
+
"args": {},
|
|
1194
|
+
"description": "publish npm package",
|
|
980
1195
|
"flags": {
|
|
981
1196
|
"json": {
|
|
982
|
-
"name": "json",
|
|
983
|
-
"type": "boolean",
|
|
984
1197
|
"description": "Format output as json.",
|
|
985
1198
|
"helpGroup": "GLOBAL",
|
|
986
|
-
"
|
|
1199
|
+
"name": "json",
|
|
1200
|
+
"allowNo": false,
|
|
1201
|
+
"type": "boolean"
|
|
987
1202
|
},
|
|
988
1203
|
"dryrun": {
|
|
989
|
-
"name": "dryrun",
|
|
990
|
-
"type": "boolean",
|
|
991
1204
|
"char": "d",
|
|
1205
|
+
"name": "dryrun",
|
|
992
1206
|
"summary": "If true, will not commit changes to repo or push any tags",
|
|
993
|
-
"allowNo": false
|
|
1207
|
+
"allowNo": false,
|
|
1208
|
+
"type": "boolean"
|
|
994
1209
|
},
|
|
995
1210
|
"sign": {
|
|
996
|
-
"name": "sign",
|
|
997
|
-
"type": "boolean",
|
|
998
1211
|
"char": "s",
|
|
1212
|
+
"name": "sign",
|
|
999
1213
|
"summary": "If true, then the package will be signed and the signature will be uploaded to S3",
|
|
1000
|
-
"allowNo": false
|
|
1214
|
+
"allowNo": false,
|
|
1215
|
+
"type": "boolean"
|
|
1001
1216
|
},
|
|
1002
1217
|
"npmtag": {
|
|
1003
|
-
"name": "npmtag",
|
|
1004
|
-
"type": "option",
|
|
1005
1218
|
"char": "t",
|
|
1219
|
+
"name": "npmtag",
|
|
1006
1220
|
"summary": "tag to use when publishing to npm",
|
|
1221
|
+
"default": "latest",
|
|
1222
|
+
"hasDynamicHelp": false,
|
|
1007
1223
|
"multiple": false,
|
|
1008
|
-
"
|
|
1224
|
+
"type": "option"
|
|
1009
1225
|
},
|
|
1010
1226
|
"npmaccess": {
|
|
1011
|
-
"name": "npmaccess",
|
|
1012
|
-
"type": "option",
|
|
1013
1227
|
"char": "a",
|
|
1228
|
+
"name": "npmaccess",
|
|
1014
1229
|
"summary": "access level to use when publishing to npm",
|
|
1230
|
+
"default": "public",
|
|
1231
|
+
"hasDynamicHelp": false,
|
|
1015
1232
|
"multiple": false,
|
|
1016
|
-
"
|
|
1233
|
+
"type": "option"
|
|
1017
1234
|
},
|
|
1018
1235
|
"install": {
|
|
1019
1236
|
"name": "install",
|
|
1020
|
-
"type": "boolean",
|
|
1021
1237
|
"summary": "run yarn install and build on repository",
|
|
1022
|
-
"allowNo": true
|
|
1238
|
+
"allowNo": true,
|
|
1239
|
+
"type": "boolean"
|
|
1023
1240
|
},
|
|
1024
1241
|
"prerelease": {
|
|
1025
1242
|
"name": "prerelease",
|
|
1026
|
-
"type": "option",
|
|
1027
1243
|
"summary": "determine the next version as <version>-<prerelease>.0 if version is not manually set",
|
|
1028
|
-
"
|
|
1244
|
+
"hasDynamicHelp": false,
|
|
1245
|
+
"multiple": false,
|
|
1246
|
+
"type": "option"
|
|
1029
1247
|
},
|
|
1030
1248
|
"verify": {
|
|
1031
1249
|
"name": "verify",
|
|
1032
|
-
"type": "boolean",
|
|
1033
1250
|
"summary": "verify npm registry has new version after publish and digital signature",
|
|
1034
|
-
"allowNo": true
|
|
1251
|
+
"allowNo": true,
|
|
1252
|
+
"type": "boolean"
|
|
1035
1253
|
},
|
|
1036
1254
|
"githubtag": {
|
|
1037
1255
|
"name": "githubtag",
|
|
1038
|
-
"type": "option",
|
|
1039
1256
|
"summary": "given a github tag, release the version specified in the package.json as is. Useful when you've already done a release and only need npm publish features",
|
|
1040
|
-
"
|
|
1257
|
+
"hasDynamicHelp": false,
|
|
1258
|
+
"multiple": false,
|
|
1259
|
+
"type": "option"
|
|
1041
1260
|
}
|
|
1042
1261
|
},
|
|
1043
|
-
"
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
"id": "cli:install:jit:test",
|
|
1047
|
-
"summary": "Test that all JIT plugins can be successfully installed.",
|
|
1048
|
-
"strict": true,
|
|
1049
|
-
"pluginName": "@salesforce/plugin-release-management",
|
|
1262
|
+
"hasDynamicHelp": false,
|
|
1263
|
+
"hiddenAliases": [],
|
|
1264
|
+
"id": "npm:package:release",
|
|
1050
1265
|
"pluginAlias": "@salesforce/plugin-release-management",
|
|
1266
|
+
"pluginName": "@salesforce/plugin-release-management",
|
|
1051
1267
|
"pluginType": "core",
|
|
1268
|
+
"strict": true,
|
|
1269
|
+
"summary": "publish npm package",
|
|
1270
|
+
"enableJsonFlag": true,
|
|
1271
|
+
"SF_ENV": "SF_ENV",
|
|
1272
|
+
"isESM": false,
|
|
1273
|
+
"relativePath": [
|
|
1274
|
+
"lib",
|
|
1275
|
+
"commands",
|
|
1276
|
+
"npm",
|
|
1277
|
+
"package",
|
|
1278
|
+
"release.js"
|
|
1279
|
+
]
|
|
1280
|
+
},
|
|
1281
|
+
"cli:install:jit:test": {
|
|
1052
1282
|
"aliases": [],
|
|
1283
|
+
"args": {},
|
|
1053
1284
|
"examples": [
|
|
1054
1285
|
"<%= config.bin %> <%= command.id %>"
|
|
1055
1286
|
],
|
|
1056
1287
|
"flags": {
|
|
1057
1288
|
"json": {
|
|
1058
|
-
"name": "json",
|
|
1059
|
-
"type": "boolean",
|
|
1060
1289
|
"description": "Format output as json.",
|
|
1061
1290
|
"helpGroup": "GLOBAL",
|
|
1062
|
-
"
|
|
1291
|
+
"name": "json",
|
|
1292
|
+
"allowNo": false,
|
|
1293
|
+
"type": "boolean"
|
|
1063
1294
|
},
|
|
1064
1295
|
"jit-plugin": {
|
|
1065
|
-
"name": "jit-plugin",
|
|
1066
|
-
"type": "option",
|
|
1067
1296
|
"char": "j",
|
|
1297
|
+
"name": "jit-plugin",
|
|
1068
1298
|
"summary": "JIT plugin(s) to test, example: @salesforce/plugin-community",
|
|
1069
|
-
"
|
|
1299
|
+
"hasDynamicHelp": false,
|
|
1300
|
+
"multiple": true,
|
|
1301
|
+
"type": "option"
|
|
1070
1302
|
}
|
|
1071
1303
|
},
|
|
1072
|
-
"
|
|
1304
|
+
"hasDynamicHelp": false,
|
|
1305
|
+
"hiddenAliases": [],
|
|
1306
|
+
"id": "cli:install:jit:test",
|
|
1307
|
+
"pluginAlias": "@salesforce/plugin-release-management",
|
|
1308
|
+
"pluginName": "@salesforce/plugin-release-management",
|
|
1309
|
+
"pluginType": "core",
|
|
1310
|
+
"strict": true,
|
|
1311
|
+
"summary": "Test that all JIT plugins can be successfully installed.",
|
|
1312
|
+
"enableJsonFlag": true,
|
|
1313
|
+
"SF_ENV": "SF_ENV",
|
|
1314
|
+
"isESM": false,
|
|
1315
|
+
"relativePath": [
|
|
1316
|
+
"lib",
|
|
1317
|
+
"commands",
|
|
1318
|
+
"cli",
|
|
1319
|
+
"install",
|
|
1320
|
+
"jit",
|
|
1321
|
+
"test.js"
|
|
1322
|
+
]
|
|
1073
1323
|
}
|
|
1074
|
-
}
|
|
1324
|
+
},
|
|
1325
|
+
"version": "4.5.1"
|
|
1075
1326
|
}
|