You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'GitHub repository for the module being published. Used to substititue the OWNER and REPO vars into the source template.',
32
+
type: 'string',
33
+
required: false,
34
+
requiresArg: true,
35
+
});
36
+
yargs.option('local-registry',{
37
+
describe:
38
+
'Path to a locally checked out registry where the entry files will be created.',
39
+
type: 'string',
40
+
required: true,
41
+
requiresArg: true,
42
+
});
43
+
yargs.option('module-version',{
44
+
describe: 'The module version to publish to the registry.',
45
+
type: 'string',
46
+
required: true,
47
+
requiresArg: true,
48
+
});
49
+
yargs.option('tag',{
50
+
describe:
51
+
"Tag of the the module repository's release. Used for substitution in the source template.",
52
+
type: 'string',
53
+
required: false,
54
+
requiresArg: true,
55
+
});
25
56
yargs.option('templates-dir',{
26
57
describe:
27
-
'Directory containing a config file, BCR templates, and other release files: config.yml, source.template.json, metadata.template.json, presubmit.yaml. Equivalent to the .bcr directory required by the legacy GitHub app.',
58
+
'Directory containing BCR release template files: metadata.template.json, source.template.json, presubmit.yaml, patches/. Equivalent to the .bcr directory required by the legacy GitHub app.',
0 commit comments