@augment-vir/node 30.8.0 → 30.8.1
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.
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
/* node:coverage disable */
|
|
2
2
|
/** This file cannot be tested because it calls `process.exit`. */
|
|
3
3
|
import { extname } from 'node:path';
|
|
4
|
+
import { interpolationSafeWindowsPath } from '../path/os-path.js';
|
|
4
5
|
import { extractRelevantArgs } from './relevant-args.js';
|
|
5
6
|
import { runShellCommand } from './shell.js';
|
|
6
7
|
/**
|
|
@@ -38,11 +39,11 @@ binName) {
|
|
|
38
39
|
if (!runner) {
|
|
39
40
|
throw new Error("No runner configured for file extension '${extension}' in '${path}'");
|
|
40
41
|
}
|
|
41
|
-
const results = await runShellCommand([
|
|
42
|
+
const results = await runShellCommand(interpolationSafeWindowsPath([
|
|
42
43
|
runner,
|
|
43
44
|
path,
|
|
44
45
|
...args,
|
|
45
|
-
].join(' '), {
|
|
46
|
+
].join(' ')), {
|
|
46
47
|
hookUpToConsole: true,
|
|
47
48
|
});
|
|
48
49
|
process.exit(results.exitCode || 0);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@augment-vir/node",
|
|
3
|
-
"version": "30.8.
|
|
3
|
+
"version": "30.8.1",
|
|
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",
|
|
@@ -37,8 +37,8 @@
|
|
|
37
37
|
"test:update": "npm test"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@augment-vir/assert": "^30.8.
|
|
41
|
-
"@augment-vir/common": "^30.8.
|
|
40
|
+
"@augment-vir/assert": "^30.8.1",
|
|
41
|
+
"@augment-vir/common": "^30.8.1",
|
|
42
42
|
"@date-vir/duration": "^7.0.1",
|
|
43
43
|
"ansi-styles": "^6.2.1",
|
|
44
44
|
"terminate": "^2.8.0",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"typed-event-target": "^4.0.2"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@augment-vir/test": "^30.8.
|
|
49
|
+
"@augment-vir/test": "^30.8.1",
|
|
50
50
|
"@prisma/client": "^5.22.0",
|
|
51
51
|
"@types/node": "^22.9.0",
|
|
52
52
|
"@web/dev-server-esbuild": "^1.0.3",
|