hostctl 0.1.41 → 0.1.44

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