@augment-vir/node 31.47.0 → 31.49.0
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.
|
@@ -151,6 +151,7 @@ export type RunShellCommandOptions = {
|
|
|
151
151
|
shell?: string | undefined;
|
|
152
152
|
/** Automatically hook up stdout and stderr printing to the caller's console methods. */
|
|
153
153
|
hookUpToConsole?: boolean | undefined;
|
|
154
|
+
/** @default false */
|
|
154
155
|
rejectOnError?: boolean | undefined;
|
|
155
156
|
/** Callback to call whenever the shell logs to stdout. */
|
|
156
157
|
stdoutCallback?: (stdout: string, childProcess: ChildProcess) => MaybePromise<void> | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@augment-vir/node",
|
|
3
|
-
"version": "31.
|
|
3
|
+
"version": "31.49.0",
|
|
4
4
|
"description": "A collection of augments, helpers types, functions, and classes only for Node.js (backend) JavaScript environments.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"augment",
|
|
@@ -38,19 +38,19 @@
|
|
|
38
38
|
"test:update": "npm test"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@augment-vir/assert": "^31.
|
|
42
|
-
"@augment-vir/common": "^31.
|
|
41
|
+
"@augment-vir/assert": "^31.49.0",
|
|
42
|
+
"@augment-vir/common": "^31.49.0",
|
|
43
43
|
"@date-vir/duration": "^8.0.0",
|
|
44
44
|
"ansi-styles": "^6.2.3",
|
|
45
45
|
"sanitize-filename": "^1.6.3",
|
|
46
46
|
"terminate": "^2.8.0",
|
|
47
47
|
"tsx": "^4.20.6",
|
|
48
|
-
"type-fest": "^5.
|
|
48
|
+
"type-fest": "^5.2.0",
|
|
49
49
|
"typed-event-target": "^4.1.0"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"@augment-vir/test": "^31.
|
|
53
|
-
"@types/node": "^24.
|
|
52
|
+
"@augment-vir/test": "^31.49.0",
|
|
53
|
+
"@types/node": "^24.10.0",
|
|
54
54
|
"@web/dev-server-esbuild": "^1.0.4",
|
|
55
55
|
"@web/test-runner": "^0.20.2",
|
|
56
56
|
"@web/test-runner-commands": "^0.9.0",
|
|
@@ -171,6 +171,7 @@ export type RunShellCommandOptions = {
|
|
|
171
171
|
shell?: string | undefined;
|
|
172
172
|
/** Automatically hook up stdout and stderr printing to the caller's console methods. */
|
|
173
173
|
hookUpToConsole?: boolean | undefined;
|
|
174
|
+
/** @default false */
|
|
174
175
|
rejectOnError?: boolean | undefined;
|
|
175
176
|
/** Callback to call whenever the shell logs to stdout. */
|
|
176
177
|
stdoutCallback?: (stdout: string, childProcess: ChildProcess) => MaybePromise<void> | undefined;
|