@outfitter/testing 0.2.1 → 0.2.3
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/package.json +27 -3
package/README.md
CHANGED
|
@@ -261,12 +261,12 @@ Import specific modules directly for smaller bundles:
|
|
|
261
261
|
```typescript
|
|
262
262
|
// Just fixtures
|
|
263
263
|
import { createFixture, withTempDir, withEnv } from "@outfitter/testing/fixtures";
|
|
264
|
+
```
|
|
264
265
|
|
|
265
|
-
|
|
266
|
-
import { createCliHarness } from "@outfitter/testing/cli-harness";
|
|
266
|
+
All harness utilities are available from the main package export:
|
|
267
267
|
|
|
268
|
-
|
|
269
|
-
import { createMcpHarness } from "@outfitter/testing
|
|
268
|
+
```typescript
|
|
269
|
+
import { createCliHarness, createMcpHarness } from "@outfitter/testing";
|
|
270
270
|
```
|
|
271
271
|
|
|
272
272
|
## API Reference
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@outfitter/testing",
|
|
3
3
|
"description": "Test harnesses, fixtures, and utilities for Outfitter packages",
|
|
4
|
-
"version": "0.2.
|
|
4
|
+
"version": "0.2.3",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
7
7
|
"dist"
|
|
@@ -15,12 +15,36 @@
|
|
|
15
15
|
"default": "./dist/index.js"
|
|
16
16
|
}
|
|
17
17
|
},
|
|
18
|
+
"./cli-harness": {
|
|
19
|
+
"import": {
|
|
20
|
+
"types": "./dist/cli-harness.d.ts",
|
|
21
|
+
"default": "./dist/cli-harness.js"
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"./cli-helpers": {
|
|
25
|
+
"import": {
|
|
26
|
+
"types": "./dist/cli-helpers.d.ts",
|
|
27
|
+
"default": "./dist/cli-helpers.js"
|
|
28
|
+
}
|
|
29
|
+
},
|
|
18
30
|
"./fixtures": {
|
|
19
31
|
"import": {
|
|
20
32
|
"types": "./dist/fixtures.d.ts",
|
|
21
33
|
"default": "./dist/fixtures.js"
|
|
22
34
|
}
|
|
23
35
|
},
|
|
36
|
+
"./mcp-harness": {
|
|
37
|
+
"import": {
|
|
38
|
+
"types": "./dist/mcp-harness.d.ts",
|
|
39
|
+
"default": "./dist/mcp-harness.js"
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
"./mock-factories": {
|
|
43
|
+
"import": {
|
|
44
|
+
"types": "./dist/mock-factories.d.ts",
|
|
45
|
+
"default": "./dist/mock-factories.js"
|
|
46
|
+
}
|
|
47
|
+
},
|
|
24
48
|
"./package.json": "./package.json"
|
|
25
49
|
},
|
|
26
50
|
"sideEffects": false,
|
|
@@ -33,8 +57,8 @@
|
|
|
33
57
|
"clean": "rm -rf dist"
|
|
34
58
|
},
|
|
35
59
|
"dependencies": {
|
|
36
|
-
"@outfitter/contracts": "0.
|
|
37
|
-
"@outfitter/mcp": "0.
|
|
60
|
+
"@outfitter/contracts": "0.4.0",
|
|
61
|
+
"@outfitter/mcp": "0.4.1",
|
|
38
62
|
"zod": "^4.3.5"
|
|
39
63
|
},
|
|
40
64
|
"devDependencies": {
|