@karmaniverous/get-dotenv 4.4.1 → 4.4.2

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 CHANGED
@@ -113,7 +113,7 @@ You can also use `getdotenv` from the command line:
113
113
  # Options:
114
114
  # -e, --env <string> target environment (dotenv-expanded)
115
115
  # -v, --vars <string> extra variables expressed as delimited key-value pairs (dotenv-expanded): KEY1=VAL1 KEY2=VAL2
116
- # -c, --command <string> command string executed according to the --shell option, conflicts with cmd subcommand (dotenv-expanded)
116
+ # -c, --command <string> command executed according to the --shell option, conflicts with cmd subcommand (dotenv-expanded)
117
117
  # -o, --output-path <string> consolidated output file (dotenv-expanded)
118
118
  # -s, --shell [string] command execution shell, no argument for default OS shell or provide shell string (default OS shell)
119
119
  # -S, --shell-off command execution shell OFF
@@ -150,7 +150,7 @@ You can also use `getdotenv` from the command line:
150
150
  #
151
151
  # Commands:
152
152
  # batch [options] Batch shell commands across multiple working directories.
153
- # cmd batch execute command string according to the --shell option, conflicts with --command option (default command)
153
+ # cmd batch execute command according to the --shell option, conflicts with --command option (default command)
154
154
  # help [command] display help for command
155
155
  ```
156
156
 
@@ -181,19 +181,19 @@ Lest you doubt what that kind of leverage can do for you, consider this:
181
181
 
182
182
  # Usage: getdotenv batch [options] [command]
183
183
  #
184
- # Batch shell commands across multiple working directories.
184
+ # Batch command execution across multiple working directories.
185
185
  #
186
186
  # Options:
187
187
  # -p, --pkg-cwd use nearest package directory as current working directory
188
188
  # -r, --root-path <string> path to batch root directory from current working directory (default: "./")
189
- # -g, --globs <strings...> space-delimited globs from root path (default: "*")
190
- # -c, --command <string> shell command string, conflicts with cmd subcommand (dotenv-expanded)
189
+ # -g, --globs <string> space-delimited globs from root path (default: "*")
190
+ # -c, --command <string> command executed according to the base --shell option, conflicts with cmd subcommand (dotenv-expanded)
191
191
  # -l, --list list working directories without executing command
192
192
  # -e, --ignore-errors ignore errors and continue with next path
193
193
  # -h, --help display help for command
194
194
  #
195
195
  # Commands:
196
- # cmd batch execute shell command, conflicts with --command option (default command)
196
+ # cmd execute command, conflicts with --command option (default subcommand)
197
197
  # help [command] display help for command
198
198
  ```
199
199
 
@@ -39614,7 +39614,7 @@ const batchCommand = new Command()
39614
39614
 
39615
39615
  const cmdCommand = new Command()
39616
39616
  .name('cmd')
39617
- .description('batch execute command string according to the --shell option, conflicts with --command option (default subcommand)')
39617
+ .description('batch execute command according to the --shell option, conflicts with --command option (default subcommand)')
39618
39618
  .configureHelp({ showGlobalOptions: true })
39619
39619
  .enablePositionalOptions()
39620
39620
  .passThroughOptions()
package/dist/index.cjs CHANGED
@@ -39615,7 +39615,7 @@ const batchCommand = new Command()
39615
39615
 
39616
39616
  const cmdCommand = new Command()
39617
39617
  .name('cmd')
39618
- .description('batch execute command string according to the --shell option, conflicts with --command option (default subcommand)')
39618
+ .description('batch execute command according to the --shell option, conflicts with --command option (default subcommand)')
39619
39619
  .configureHelp({ showGlobalOptions: true })
39620
39620
  .enablePositionalOptions()
39621
39621
  .passThroughOptions()
package/dist/index.mjs CHANGED
@@ -39613,7 +39613,7 @@ const batchCommand = new Command()
39613
39613
 
39614
39614
  const cmdCommand = new Command()
39615
39615
  .name('cmd')
39616
- .description('batch execute command string according to the --shell option, conflicts with --command option (default subcommand)')
39616
+ .description('batch execute command according to the --shell option, conflicts with --command option (default subcommand)')
39617
39617
  .configureHelp({ showGlobalOptions: true })
39618
39618
  .enablePositionalOptions()
39619
39619
  .passThroughOptions()
package/package.json CHANGED
@@ -132,5 +132,5 @@
132
132
  },
133
133
  "type": "module",
134
134
  "types": "dist/index.d.ts",
135
- "version": "4.4.1"
135
+ "version": "4.4.2"
136
136
  }