hostctl 0.1.42 → 0.1.45
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 +34 -3
- package/dist/bin/hostctl.js +1556 -357
- package/dist/bin/hostctl.js.map +1 -1
- package/dist/index.d.ts +3011 -1367
- package/dist/index.js +9807 -2605
- package/dist/index.js.map +1 -1
- package/package.json +13 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hostctl",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.45",
|
|
4
4
|
"description": "hostctl is a tool that runs task scripts against hosts.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -31,11 +31,12 @@
|
|
|
31
31
|
"test": "npm run test:unit",
|
|
32
32
|
"test:unit": "vitest run --project unit-functional",
|
|
33
33
|
"test:functional": "VITEST_INCLUDE=\"test/functional/**/*.test.ts\" vitest run --project unit-functional",
|
|
34
|
-
"test:e2e": "
|
|
35
|
-
"test:e2e:
|
|
36
|
-
"test:e2e:
|
|
37
|
-
"test:e2e:
|
|
38
|
-
"test:e2e:
|
|
34
|
+
"test:e2e": "npm run test:e2e:full",
|
|
35
|
+
"test:e2e:full": "VITEST_PROJECT=e2e vitest run",
|
|
36
|
+
"test:e2e:nonseq": "VITEST_PROJECT=e2e VITEST_EXCLUDE=\"test/e2e/specific/**/*.e2e.test.ts\" vitest run",
|
|
37
|
+
"test:e2e:specific": "VITEST_PROJECT=e2e VITEST_INCLUDE=\"test/e2e/specific/**/*.e2e.test.ts\" vitest run",
|
|
38
|
+
"test:e2e:abstract": "VITEST_PROJECT=e2e VITEST_INCLUDE=\"test/e2e/abstract/**/*.e2e.test.ts\" vitest run",
|
|
39
|
+
"test:e2e:xcpng": "VITEST_PROJECT=e2e VITEST_INCLUDE=\"test/e2e/core.xcpng.manage.e2e.test.ts\" vitest run",
|
|
39
40
|
"test:file": "vitest run",
|
|
40
41
|
"test:unit:file": "VITEST_PROJECT=unit-functional vitest run",
|
|
41
42
|
"test:pkg:abstract:file": "VITEST_PROJECT=e2e VITEST_INCLUDE=\"test/e2e/core.pkg.abstract.dynamic.e2e.test.ts\" vitest run",
|
|
@@ -89,9 +90,12 @@
|
|
|
89
90
|
"@types/bun": "^1.2.17",
|
|
90
91
|
"@types/decompress": "^4.2.7",
|
|
91
92
|
"@types/fs-extra": "^11.0.4",
|
|
93
|
+
"@types/js-yaml": "^4.0.9",
|
|
92
94
|
"@types/object-inspect": "^1.13.0",
|
|
93
95
|
"@types/parse-path": "^7.1.0",
|
|
96
|
+
"@types/shell-quote": "^1.7.5",
|
|
94
97
|
"@types/ssh2": "^1.15.5",
|
|
98
|
+
"@types/tmp": "^0.2.6",
|
|
95
99
|
"@types/which": "^3.0.4",
|
|
96
100
|
"esbuild": "0.25.5",
|
|
97
101
|
"fs-extra": "^11.3.0",
|
|
@@ -101,10 +105,7 @@
|
|
|
101
105
|
"release-it": "^19.0.3",
|
|
102
106
|
"tsup": "^8.5.0",
|
|
103
107
|
"typescript": "^5.8.3",
|
|
104
|
-
"vitest": "^3.2.4"
|
|
105
|
-
"@types/js-yaml": "^4.0.9",
|
|
106
|
-
"@types/shell-quote": "^1.7.5",
|
|
107
|
-
"@types/tmp": "^0.2.6"
|
|
108
|
+
"vitest": "^3.2.4"
|
|
108
109
|
},
|
|
109
110
|
"dependencies": {
|
|
110
111
|
"@expo/spawn-async": "^1.7.2",
|
|
@@ -147,6 +148,7 @@
|
|
|
147
148
|
"typescript-string-operations": "^1.6.1",
|
|
148
149
|
"which": "^5.0.0",
|
|
149
150
|
"xz-decompress": "^0.2.2",
|
|
150
|
-
"yaml": "^2.8.0"
|
|
151
|
+
"yaml": "^2.8.0",
|
|
152
|
+
"zod": "^4.1.13"
|
|
151
153
|
}
|
|
152
154
|
}
|