@karmaniverous/get-dotenv 4.4.1 → 4.4.3
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 +6 -6
- package/dist/getdotenv.cli.mjs +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +8 -8
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
|
|
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
|
|
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
|
|
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 <
|
|
190
|
-
# -c, --command <string> shell
|
|
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
|
|
196
|
+
# cmd execute command, conflicts with --command option (default subcommand)
|
|
197
197
|
# help [command] display help for command
|
|
198
198
|
```
|
|
199
199
|
|
package/dist/getdotenv.cli.mjs
CHANGED
|
@@ -39614,7 +39614,7 @@ const batchCommand = new Command()
|
|
|
39614
39614
|
|
|
39615
39615
|
const cmdCommand = new Command()
|
|
39616
39616
|
.name('cmd')
|
|
39617
|
-
.description('
|
|
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('
|
|
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('
|
|
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
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"description": "Process dotenv files in an arbitrary location & optionally populate environment variables.",
|
|
21
21
|
"devDependencies": {
|
|
22
22
|
"@commander-js/extra-typings": "^12.1.0",
|
|
23
|
-
"@eslint/js": "^9.
|
|
23
|
+
"@eslint/js": "^9.4.0",
|
|
24
24
|
"@rollup/plugin-alias": "^5.1.0",
|
|
25
|
-
"@rollup/plugin-commonjs": "^
|
|
25
|
+
"@rollup/plugin-commonjs": "^26.0.1",
|
|
26
26
|
"@rollup/plugin-json": "^6.1.0",
|
|
27
27
|
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
28
28
|
"@rollup/plugin-terser": "^0.4.4",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"@types/fs-extra": "^11.0.4",
|
|
35
35
|
"@types/lodash": "^4.17.4",
|
|
36
36
|
"@types/mocha": "^10.0.6",
|
|
37
|
-
"@types/node": "^20.
|
|
37
|
+
"@types/node": "^20.14.2",
|
|
38
38
|
"auto-changelog": "^2.4.0",
|
|
39
39
|
"chai": "^5.1.1",
|
|
40
40
|
"cross-env": "^7.0.3",
|
|
@@ -45,19 +45,19 @@
|
|
|
45
45
|
"eslint-plugin-tsdoc": "^0.2.17",
|
|
46
46
|
"fs-extra": "^11.2.0",
|
|
47
47
|
"jsdom-global": "^3.0.2",
|
|
48
|
-
"lefthook": "^1.6.
|
|
48
|
+
"lefthook": "^1.6.15",
|
|
49
49
|
"mocha": "^10.4.0",
|
|
50
50
|
"nyc": "^15.1.0",
|
|
51
|
-
"prettier": "^3.
|
|
51
|
+
"prettier": "^3.3.1",
|
|
52
52
|
"release-it": "^17.3.0",
|
|
53
53
|
"rimraf": "^5.0.7",
|
|
54
54
|
"rollup": "^4.18.0",
|
|
55
55
|
"rollup-plugin-dts": "^6.1.1",
|
|
56
56
|
"source-map-support": "^0.5.21",
|
|
57
57
|
"ts-node": "^10.9.2",
|
|
58
|
-
"tslib": "^2.6.
|
|
58
|
+
"tslib": "^2.6.3",
|
|
59
59
|
"typescript": "^5.4.5",
|
|
60
|
-
"typescript-eslint": "^7.
|
|
60
|
+
"typescript-eslint": "^7.12.0"
|
|
61
61
|
},
|
|
62
62
|
"exports": {
|
|
63
63
|
".": {
|
|
@@ -132,5 +132,5 @@
|
|
|
132
132
|
},
|
|
133
133
|
"type": "module",
|
|
134
134
|
"types": "dist/index.d.ts",
|
|
135
|
-
"version": "4.4.
|
|
135
|
+
"version": "4.4.3"
|
|
136
136
|
}
|