@uuv/runner-commons 2.17.0 → 2.18.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/CHANGELOG.md CHANGED
@@ -1,3 +1,25 @@
1
+ ## [2.18.1](https://github.com/Orange-OpenSource/uuv/compare/runner-commons-v2.18.0...runner-commons-v2.18.1) (2024-07-08)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * add lib path for event classes, [#679](https://github.com/Orange-OpenSource/uuv/issues/679) ([e8e521b](https://github.com/Orange-OpenSource/uuv/commit/e8e521ba4f3f5762cc69cdbb165ea151103d4087))
7
+
8
+ # [2.18.0](https://github.com/Orange-OpenSource/uuv/compare/runner-commons-v2.17.0...runner-commons-v2.18.0) (2024-07-07)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **assistant:** remove not required cucumber dependency ([da9f7b0](https://github.com/Orange-OpenSource/uuv/commit/da9f7b0089aeffc63604a306a799230fbcd70d3f))
14
+
15
+
16
+ ### Features
17
+
18
+ * **assistant:** update dependency @codemirror/view to v6.28.4 ([62aa840](https://github.com/Orange-OpenSource/uuv/commit/62aa8407bef7f2c953d1b7fe5a0b9fc8eb02812c))
19
+ * **assistant:** update dependency @uiw/codemirror-theme-github to v4.23.0 ([ca8e6b8](https://github.com/Orange-OpenSource/uuv/commit/ca8e6b83fac8b14ac0108ba263b968a2f9706528))
20
+ * **runner-cypress:** update dependency cypress to v13.13.0 ([78a9cfc](https://github.com/Orange-OpenSource/uuv/commit/78a9cfc4b0de465c527db65618bd9b4bd70704f6))
21
+ * **runner-playwright:** update dependency playwright-bdd to v6.6.0 ([f30b4d5](https://github.com/Orange-OpenSource/uuv/commit/f30b4d5ae5177e5a4281ee742debf0c3c73b47ac))
22
+
1
23
  # [2.17.0](https://github.com/Orange-OpenSource/uuv/compare/runner-commons-v2.16.4...runner-commons-v2.17.0) (2024-07-02)
2
24
 
3
25
 
package/dist/index.d.ts CHANGED
@@ -3,7 +3,6 @@ export * from "./step-definition-generator/generate-step-definitions";
3
3
  export * from "./step-definition-generator/generate-step-definitions-documentation";
4
4
  export * from "./runner/step-definitions/_constant";
5
5
  export * from "./runner/step-definitions/_i-context";
6
- export * from "./runner/event";
7
6
  import key from "./assets/i18n/web/template.json";
8
7
  export { key };
9
8
  export { AccessibleRole } from "./step-definition-generator/accessible-role";
package/dist/index.js CHANGED
@@ -23,7 +23,6 @@ __exportStar(require("./step-definition-generator/generate-step-definitions"), e
23
23
  __exportStar(require("./step-definition-generator/generate-step-definitions-documentation"), exports);
24
24
  __exportStar(require("./runner/step-definitions/_constant"), exports);
25
25
  __exportStar(require("./runner/step-definitions/_i-context"), exports);
26
- __exportStar(require("./runner/event"), exports);
27
26
  const template_json_1 = __importDefault(require("./assets/i18n/web/template.json"));
28
27
  exports.key = template_json_1.default;
29
28
  var accessible_role_1 = require("./step-definition-generator/accessible-role");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uuv/runner-commons",
3
- "version": "2.17.0",
3
+ "version": "2.18.1",
4
4
  "type": "commonjs",
5
5
  "author": "Louis Fredice NJAKO MOLOM (https://github.com/luifr10) & Stanley SERVICAL (https://github.com/stanlee974)",
6
6
  "description": "A common lib for uuv",
@@ -39,7 +39,8 @@
39
39
  "@typescript-eslint/eslint-plugin": "5.62.0",
40
40
  "@typescript-eslint/parser": "5.62.0",
41
41
  "eslint": "8.57.0",
42
- "jest": "29.7.0"
42
+ "jest": "29.7.0",
43
+ "xml2js": "^0.6.2"
43
44
  },
44
45
  "files": [
45
46
  "dist/index.d.ts",
@@ -66,6 +67,11 @@
66
67
  "import": "./dist/assets/i18n/web/en/index.js",
67
68
  "require": "./dist/assets/i18n/web/en/index.js",
68
69
  "types": "./dist/assets/i18n/web/en/index.d.ts"
70
+ },
71
+ "./runner/event": {
72
+ "import": "./dist/runner/event/index.js",
73
+ "require": "./dist/runner/event/index.js",
74
+ "types": "./dist/runner/event/index.d.ts"
69
75
  }
70
76
  },
71
77
  "dependencies": {