@lynxwall/cucumber-tsflow 7.1.0 → 7.1.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/README.md CHANGED
@@ -20,6 +20,7 @@ With this latest release, cucumber-tsflow has been refactored to support cucumbe
20
20
  - **API support** that implements and extends the cucumber-js API.
21
21
  - Support for Node 22 and Typescript 5.8.
22
22
  - Switched to **official Typescript Decorators** with metadata support implemented in [Typescript 5.2](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-5-2.html#decorator-metadata).
23
+ **NOTE:** Please **remove *experimentalDecorators*** from your TypeScript configuration as it is no longer supported with the update to use official decorators, which are very different.
23
24
  - Transpiler configuration updates to support node and Typescript changes.
24
25
  - Added a new section to this readme that describes [Transpilers and TypeScript](#transpilers-and-typescript) in more detail.
25
26
 
@@ -166,7 +167,7 @@ The transpilers included with cucumber-tsflow transpile to **CommonJS** and do n
166
167
 
167
168
  All of the transpilers included with cucumber-tsflow use the same TypeScript configuration, which take precedence when running your tests using one of these transpilers. In other words, while each transpiler is different, they all use the same tsconfig settings, which are shown below:
168
169
 
169
- ```json
170
+ ```typescript
170
171
  compilerOptions: {
171
172
  module: 'nodeNext',
172
173
  target: 'es2022',
package/lib/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const version = "7.1.0";
1
+ export declare const version = "7.1.1";
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.1.0';
5
+ exports.version = '7.1.1';
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.1.0'\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.1.1'\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.1.0",
4
+ "version": "7.1.1",
5
5
  "author": "Lonnie Wall <lynxdev@lynxwall.com>",
6
6
  "license": "MIT",
7
7
  "keywords": [
@@ -51,6 +51,7 @@
51
51
  "dependencies": {
52
52
  "@cucumber/cucumber": "~11.2.0",
53
53
  "@jeanbenitez/logical-expression-parser": "~1.0.0",
54
+ "@types/node": "~22.13.10",
54
55
  "ansis": "~3.17.0",
55
56
  "commander": "^13.1.0",
56
57
  "debug": "^4.3.4",
@@ -69,6 +70,7 @@
69
70
  "ts-node": "~10.9.2",
70
71
  "tsconfig-paths": "~4.2.0",
71
72
  "tslib": "2.8.1",
73
+ "typescript": "~5.8.2",
72
74
  "underscore": "~1.13.7"
73
75
  },
74
76
  "devDependencies": {
@@ -77,12 +79,10 @@
77
79
  "@types/glob": "~8.1.0",
78
80
  "@types/hash-sum": "~1.0.2",
79
81
  "@types/lodash.merge": "~4.6.9",
80
- "@types/node": "~22.13.10",
81
82
  "@types/source-map-support": "~0.5.10",
82
83
  "@types/underscore": "~1.13.0",
83
84
  "genversion": "~3.2.0",
84
- "shx": "0.3.4",
85
- "typescript": "~5.8.2"
85
+ "shx": "0.3.4"
86
86
  },
87
87
  "scripts": {
88
88
  "build": "genversion --es6 src/version.ts && tsc --build tsconfig.node.json && shx cp src/wrapper.mjs lib/ && shx cp src/api/wrapper.mjs lib/api/",