@lynxwall/cucumber-tsflow 7.3.3 → 7.4.0

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 CHANGED
@@ -12,6 +12,10 @@ This is a detached fork of <https://github.com/timjroberts/cucumber-js-tsflow>.
12
12
 
13
13
  This fork has been drastically modified from the original and will eventually be moved to a new project. In addition, the SpecFlow project has reached [end of life](https://reqnroll.net/news/2025/01/specflow-end-of-life-has-been-announced/), and this project will be rebranded. Further details will be provided in future updates. However, the new project will support the same functionality as cucumber-tsflow while providing additional tools and extensions.
14
14
 
15
+ ## Release Updates (7.4.0)
16
+
17
+ This release shifts from importing @cumber/cumber as a dependency to making it a peer dependency. This update was necessary to avoid cucumber runtime instance conflicts when importing cucumber-tsflow into the companion VS Code extension. Importing @cucumber/cucumber as a peer dependency is also recommended in Cucumber.JS documentation.
18
+
15
19
  ## Release Updates (7.3.0)
16
20
 
17
21
  With this release, we've finally added support for ESM Modules. For details on the new transpilers/loaders please see: [cucumber-tsflow ESM implementation](https://github.com/LynxWall/cucumber-js-tsflow/blob/master/cucumber-tsflow/src/transpilers/esm/README.md).
package/lib/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const version = "7.3.3";
1
+ export declare const version = "7.4.0";
package/lib/version.js CHANGED
@@ -2,5 +2,5 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.version = void 0;
4
4
  // Generated by genversion.
5
- exports.version = '7.3.3';
5
+ exports.version = '7.4.0';
6
6
  //# sourceMappingURL=version.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"version.js","sourceRoot":"","sources":["../src/version.ts"],"names":[],"mappings":";;;AAAA,2BAA2B;AACd,QAAA,OAAO,GAAG,OAAO,CAAA","sourcesContent":["// Generated by genversion.\nexport const version = '7.3.3'\n"]}
1
+ {"version":3,"file":"version.js","sourceRoot":"","sources":["../src/version.ts"],"names":[],"mappings":";;;AAAA,2BAA2B;AACd,QAAA,OAAO,GAAG,OAAO,CAAA","sourcesContent":["// Generated by genversion.\nexport const version = '7.4.0'\n"]}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@lynxwall/cucumber-tsflow",
3
3
  "description": "Provides 'specflow' like bindings for CucumberJS 11.2.0 in TypeScript 5.8+.",
4
- "version": "7.3.3",
4
+ "version": "7.4.0",
5
5
  "author": "Lonnie Wall <lynxdev@lynxwall.com>",
6
6
  "license": "MIT",
7
7
  "keywords": [
@@ -57,7 +57,6 @@
57
57
  },
58
58
  "types": "./lib/index.d.ts",
59
59
  "dependencies": {
60
- "@cucumber/cucumber": "~12.2.0",
61
60
  "@jeanbenitez/logical-expression-parser": "~1.0.0",
62
61
  "@types/node": "~22.13.10",
63
62
  "ansis": "~3.17.0",
@@ -82,6 +81,7 @@
82
81
  "underscore": "~1.13.7"
83
82
  },
84
83
  "devDependencies": {
84
+ "@cucumber/cucumber": "~12.2.0",
85
85
  "@rollup/pluginutils": "~5.3.0",
86
86
  "@types/debug": "~4.1.12",
87
87
  "@types/hash-sum": "~1.0.2",
@@ -91,6 +91,9 @@
91
91
  "genversion": "~3.2.0",
92
92
  "shx": "0.4.0"
93
93
  },
94
+ "peerDependencies": {
95
+ "@cucumber/cucumber": ">=12.2.0 <13.0.0"
96
+ },
94
97
  "scripts": {
95
98
  "build": "genversion --es6 src/version.ts && tsc --build tsconfig.node.json && yarn build:copy-mjs && yarn build:transpiler",
96
99
  "build:transpiler": "node src/scripts/build-esm-transpiler-cjs.js",