@letsrunit/executor 0.20.0 → 0.21.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@letsrunit/executor",
3
- "version": "0.20.0",
3
+ "version": "0.21.1",
4
4
  "description": "High-level test execution orchestrator for letsrunit",
5
5
  "keywords": [
6
6
  "testing",
@@ -28,6 +28,11 @@
28
28
  "types": "./dist/index.d.ts",
29
29
  "import": "./dist/index.js",
30
30
  "default": "./dist/index.js"
31
+ },
32
+ "./explain": {
33
+ "types": "./dist/explain.d.ts",
34
+ "import": "./dist/explain.js",
35
+ "default": "./dist/explain.js"
31
36
  }
32
37
  }
33
38
  },
@@ -41,14 +46,14 @@
41
46
  },
42
47
  "packageManager": "yarn@4.10.3",
43
48
  "dependencies": {
44
- "@letsrunit/ai": "0.20.0",
45
- "@letsrunit/controller": "0.20.0",
46
- "@letsrunit/gherkin": "0.20.0",
47
- "@letsrunit/journal": "0.20.0",
48
- "@letsrunit/mailbox": "0.20.0",
49
- "@letsrunit/playwright": "0.20.0",
50
- "@letsrunit/store": "0.20.0",
51
- "@letsrunit/utils": "0.20.0",
49
+ "@letsrunit/ai": "0.21.1",
50
+ "@letsrunit/controller": "0.21.1",
51
+ "@letsrunit/gherkin": "0.21.1",
52
+ "@letsrunit/journal": "0.21.1",
53
+ "@letsrunit/mailbox": "0.21.1",
54
+ "@letsrunit/playwright": "0.21.1",
55
+ "@letsrunit/store": "0.21.1",
56
+ "@letsrunit/utils": "0.21.1",
52
57
  "zod": "^4.3.5"
53
58
  },
54
59
  "devDependencies": {
@@ -62,6 +67,11 @@
62
67
  "types": "./dist/index.d.ts",
63
68
  "import": "./dist/index.js",
64
69
  "default": "./dist/index.js"
70
+ },
71
+ "./explain": {
72
+ "types": "./dist/explain.d.ts",
73
+ "import": "./dist/explain.js",
74
+ "default": "./dist/explain.js"
65
75
  }
66
76
  }
67
77
  }
package/src/index.ts CHANGED
@@ -1,5 +1,4 @@
1
1
  export { refineSuggestion } from './ai/refine-suggestion';
2
- export { default as explain, type ExplainResult } from './explain';
3
2
  export { default as explore, type PreparedAction as Action } from './explore';
4
3
  export { default as generate } from './generate';
5
4
  export { default as run } from './run';
Binary file