File tree Expand file tree Collapse file tree 4 files changed +12
-11
lines changed Expand file tree Collapse file tree 4 files changed +12
-11
lines changed Original file line number Diff line number Diff line change @@ -174,7 +174,7 @@ you can use the `include` property,
174
174
175
175
--version Output the version number
176
176
--config-path Path to the JSON file containing the blobpack config
177
- --tmp-root Path to tmp working directory
177
+ --tmp-root Path to a temporary working directory
178
178
--config-root Path to the directory containing the artifact configs
179
179
--resources-root Path to the directory all resources are relative to
180
180
--dist-root Path to the directory to output artifacts
Original file line number Diff line number Diff line change @@ -56,10 +56,10 @@ const docs = `
56
56
57
57
--version Output the version number
58
58
--config-path Path to the JSON file containing the blobpack config
59
- --tmp-root Path to tmp working directory
60
- --config-root Output the version number
61
- --resources-root Output the version number
62
- --dist-root Output the version number
59
+ --tmp-root Path to a temporary working directory
60
+ --config-root Path to the directory containing the artifact configs
61
+ --resources-root Path to the directory all resources are relative to
62
+ --dist-root Path to the directory to output artifacts
63
63
`
64
64
65
65
if ( args . _ [ 0 ] === 'help' ) {
Original file line number Diff line number Diff line change 3
3
* @function build
4
4
* @param {Object } parameters
5
5
* @param {string } [parameters.configPath=package.json] Path to JSON file with a blobpack config key.
6
- * @param {string } [parameters.tmpRoot=s3] Temporary directory to download artifacts.
7
- * @param {string } [parameters.configRoot=config] Path where configs are located.
8
- * @param {string } [parameters.resourcesRoot=resources] Path where resources are located.
9
- * @param {string } [parameters.distRoot=dist] Path to output artifacts.
6
+ * @param {string } [parameters.tmpRoot=tmp] Path to a temporary working directory.
7
+ * @param {string } [parameters.configRoot=config] Path to the directory containing the artifact configs.
8
+
9
+ * @param {string } [parameters.resourcesRoot=./] Path to the directory all resources are relative to
10
+ * @param {string } [parameters.distRoot=dist] Path to the directory to output artifacts
10
11
* @param {string } [parameters.logger=console] Console compatible logger.
11
12
* @returns {string[] } Generated artifacts paths.
12
13
*/
Original file line number Diff line number Diff line change 2
2
* Download and install a Benthos binary.
3
3
* @function install
4
4
* @param {Object } parameters
5
- * @param {string } [parameters.configPath=package.json] Path to JSON file with a benthos config key .
6
- * @param {string } [parameters.tmpRoot=s3] Temporary directory to download artifacts .
5
+ * @param {string } [parameters.configPath=package.json] Path to the JSON file containing the blobpack config.
6
+ * @param {string } [parameters.tmpRoot=tmp] Path to a temporary working directory .
7
7
* @param {string } [parameters.logger=console] Console compatible logger.
8
8
* @returns {string } Path to the saved binary.
9
9
*/
You can’t perform that action at this time.
0 commit comments