@augment-vir/node 31.69.0 → 31.70.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.
@@ -76,10 +76,10 @@ export function streamShellCommand(command, cwd, shell = 'bash', env = process.e
76
76
  /** Type guards. */
77
77
  /* node:coverage ignore next 5 */
78
78
  if (!childProcess.stdout) {
79
- throw new Error(`stdout emitter was not created by exec for some reason.`);
79
+ throw new Error('stdout emitter was not created by exec for some reason.');
80
80
  }
81
81
  else if (!childProcess.stderr) {
82
- throw new Error(`stderr emitter was not created by exec for some reason.`);
82
+ throw new Error('stderr emitter was not created by exec for some reason.');
83
83
  }
84
84
  childProcess.stdout.on('data', (chunk) => {
85
85
  shellTarget.dispatch(new ShellStdoutEvent({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@augment-vir/node",
3
- "version": "31.69.0",
3
+ "version": "31.70.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,8 +38,8 @@
38
38
  "test:update": "npm test"
39
39
  },
40
40
  "dependencies": {
41
- "@augment-vir/assert": "^31.69.0",
42
- "@augment-vir/common": "^31.69.0",
41
+ "@augment-vir/assert": "^31.70.0",
42
+ "@augment-vir/common": "^31.70.0",
43
43
  "@date-vir/duration": "^8.3.2",
44
44
  "ansi-styles": "^6.2.3",
45
45
  "sanitize-filename": "^1.6.4",
@@ -49,7 +49,7 @@
49
49
  "typed-event-target": "^4.3.0"
50
50
  },
51
51
  "devDependencies": {
52
- "@augment-vir/test": "^31.69.0",
52
+ "@augment-vir/test": "^31.70.0",
53
53
  "@types/node": "^25.6.0",
54
54
  "@web/dev-server-esbuild": "^1.0.5",
55
55
  "@web/test-runner": "^0.20.2",
@@ -106,9 +106,9 @@ export function streamShellCommand(
106
106
  /** Type guards. */
107
107
  /* node:coverage ignore next 5 */
108
108
  if (!childProcess.stdout) {
109
- throw new Error(`stdout emitter was not created by exec for some reason.`);
109
+ throw new Error('stdout emitter was not created by exec for some reason.');
110
110
  } else if (!childProcess.stderr) {
111
- throw new Error(`stderr emitter was not created by exec for some reason.`);
111
+ throw new Error('stderr emitter was not created by exec for some reason.');
112
112
  }
113
113
 
114
114
  childProcess.stdout.on('data', (chunk) => {