effect-bdd 0.1.1 → 0.1.2

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.
Files changed (2) hide show
  1. package/README.md +14 -0
  2. package/package.json +2 -4
package/README.md CHANGED
@@ -8,6 +8,20 @@ The package also ships an `effect-bdd` CLI for discovering feature files and ste
8
8
 
9
9
  This package currently tracks the Effect v4 beta release train. Use matching `4.0.0-beta.x` versions of `effect` and Effect platform packages.
10
10
 
11
+ ## Installation
12
+
13
+ ```sh
14
+ pnpm add effect-bdd effect@4.0.0-beta.78
15
+ ```
16
+
17
+ The `effect-bdd` CLI is published with the package:
18
+
19
+ ```sh
20
+ pnpm effect-bdd --features "features/**/*.feature" --steps "features/**/*.step.ts"
21
+ ```
22
+
23
+ Use `effect-bdd@0.1.1` or newer. Version `0.1.0` was the first registry publish and had incorrect CLI bin metadata.
24
+
11
25
  ## When to Use `effect-bdd`
12
26
 
13
27
  Use `effect-bdd` when a Gherkin feature should drive a typed state machine:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "effect-bdd",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "description": "An Effect-native API for testing Gherkin feature files",
@@ -74,8 +74,7 @@
74
74
  "test": "vitest run",
75
75
  "test:types": "tstyche",
76
76
  "ci": "pnpm build && pnpm test && pnpm test:types",
77
- "prepack": "pnpm build",
78
- "release": "pnpm build && changeset publish"
77
+ "prepack": "pnpm build"
79
78
  },
80
79
  "peerDependencies": {
81
80
  "effect": "^4.0.0-beta.78"
@@ -88,7 +87,6 @@
88
87
  },
89
88
  "devDependencies": {
90
89
  "@babel/cli": "^7.29.7",
91
- "@changesets/cli": "^2.31.0",
92
90
  "@effect/vitest": "4.0.0-beta.78",
93
91
  "@types/node": "^25.9.2",
94
92
  "babel-plugin-annotate-pure-calls": "^0.5.0",