@augment-vir/node 30.8.3 → 31.0.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.
- package/README.md +4 -4
- package/dist/augments/terminal/shell.d.ts +6 -6
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
A collection of augments, helpers types, functions, and classes only for Node.js (backend) JavaScript environments.
|
|
4
4
|
|
|
5
|
-
-
|
|
6
|
-
-
|
|
7
|
-
-
|
|
8
|
-
-
|
|
5
|
+
- Includes a custom Prisma API built on its CLI: [`prisma`](https://electrovir.github.io/augment-vir/variables/prisma.html).
|
|
6
|
+
- Includes a custom Docker API built on its CLI: [`docker`](https://electrovir.github.io/augment-vir/variables/docker.html).
|
|
7
|
+
- Includes an easy to use shell script runner: [`runShellCommand`](https://electrovir.github.io/augment-vir/functions/runShellCommand.html).
|
|
8
|
+
- and much more!
|
|
9
9
|
|
|
10
10
|
See all the docs under `Node : *`, or `* : Node`, or `Package: @augment-vir/node` here: https://electrovir.github.io/augment-vir
|
|
@@ -20,15 +20,15 @@ declare const ShellStdoutEvent_base: (new (eventInitDict: {
|
|
|
20
20
|
bubbles?: boolean;
|
|
21
21
|
cancelable?: boolean;
|
|
22
22
|
composed?: boolean;
|
|
23
|
-
detail: string | Buffer
|
|
24
|
-
}) => import("typed-event-target").TypedCustomEvent<string | Buffer
|
|
23
|
+
detail: string | Buffer<ArrayBufferLike>;
|
|
24
|
+
}) => import("typed-event-target").TypedCustomEvent<string | Buffer<ArrayBufferLike>, "shell-stdout">) & Pick<{
|
|
25
25
|
new (type: string, eventInitDict?: EventInit): Event;
|
|
26
26
|
prototype: Event;
|
|
27
27
|
readonly NONE: 0;
|
|
28
28
|
readonly CAPTURING_PHASE: 1;
|
|
29
29
|
readonly AT_TARGET: 2;
|
|
30
30
|
readonly BUBBLING_PHASE: 3;
|
|
31
|
-
}, "prototype" | "NONE" | "CAPTURING_PHASE" | "AT_TARGET" | "BUBBLING_PHASE"> & Pick<import("typed-event-target").TypedCustomEvent<string | Buffer
|
|
31
|
+
}, "prototype" | "NONE" | "CAPTURING_PHASE" | "AT_TARGET" | "BUBBLING_PHASE"> & Pick<import("typed-event-target").TypedCustomEvent<string | Buffer<ArrayBufferLike>, "shell-stdout">, "type">;
|
|
32
32
|
/**
|
|
33
33
|
* An event that indicates that the shell command just wrote to stdout.
|
|
34
34
|
*
|
|
@@ -42,15 +42,15 @@ declare const ShellStderrEvent_base: (new (eventInitDict: {
|
|
|
42
42
|
bubbles?: boolean;
|
|
43
43
|
cancelable?: boolean;
|
|
44
44
|
composed?: boolean;
|
|
45
|
-
detail: string | Buffer
|
|
46
|
-
}) => import("typed-event-target").TypedCustomEvent<string | Buffer
|
|
45
|
+
detail: string | Buffer<ArrayBufferLike>;
|
|
46
|
+
}) => import("typed-event-target").TypedCustomEvent<string | Buffer<ArrayBufferLike>, "shell-stderr">) & Pick<{
|
|
47
47
|
new (type: string, eventInitDict?: EventInit): Event;
|
|
48
48
|
prototype: Event;
|
|
49
49
|
readonly NONE: 0;
|
|
50
50
|
readonly CAPTURING_PHASE: 1;
|
|
51
51
|
readonly AT_TARGET: 2;
|
|
52
52
|
readonly BUBBLING_PHASE: 3;
|
|
53
|
-
}, "prototype" | "NONE" | "CAPTURING_PHASE" | "AT_TARGET" | "BUBBLING_PHASE"> & Pick<import("typed-event-target").TypedCustomEvent<string | Buffer
|
|
53
|
+
}, "prototype" | "NONE" | "CAPTURING_PHASE" | "AT_TARGET" | "BUBBLING_PHASE"> & Pick<import("typed-event-target").TypedCustomEvent<string | Buffer<ArrayBufferLike>, "shell-stderr">, "type">;
|
|
54
54
|
/**
|
|
55
55
|
* An event that indicates that the shell command just wrote to stderr.
|
|
56
56
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@augment-vir/node",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "31.0.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",
|
|
@@ -37,18 +37,18 @@
|
|
|
37
37
|
"test:update": "npm test"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@augment-vir/assert": "^
|
|
41
|
-
"@augment-vir/common": "^
|
|
40
|
+
"@augment-vir/assert": "^31.0.0",
|
|
41
|
+
"@augment-vir/common": "^31.0.0",
|
|
42
42
|
"@date-vir/duration": "^7.0.1",
|
|
43
43
|
"ansi-styles": "^6.2.1",
|
|
44
44
|
"terminate": "^2.8.0",
|
|
45
|
-
"type-fest": "^4.
|
|
45
|
+
"type-fest": "^4.29.0",
|
|
46
46
|
"typed-event-target": "^4.0.2"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@augment-vir/test": "^
|
|
49
|
+
"@augment-vir/test": "^31.0.0",
|
|
50
50
|
"@prisma/client": "^5.22.0",
|
|
51
|
-
"@types/node": "^22.
|
|
51
|
+
"@types/node": "^22.10.0",
|
|
52
52
|
"@web/dev-server-esbuild": "^1.0.3",
|
|
53
53
|
"@web/test-runner": "^0.19.0",
|
|
54
54
|
"@web/test-runner-commands": "^0.9.0",
|