@lynxwall/cucumber-tsflow 5.1.3 → 6.0.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 (99) hide show
  1. package/README.md +546 -544
  2. package/bin/cucumber-tsflow +1 -1
  3. package/lib/behave.d.ts +1 -1
  4. package/lib/behave.js +27 -27
  5. package/lib/cli/argv-parser.d.ts +24 -24
  6. package/lib/cli/argv-parser.js +103 -103
  7. package/lib/cli/index.d.ts +22 -22
  8. package/lib/cli/index.js +101 -96
  9. package/lib/cli/load-configuration.d.ts +20 -20
  10. package/lib/cli/load-configuration.js +92 -92
  11. package/lib/cli/run.d.ts +1 -1
  12. package/lib/cli/run.js +49 -44
  13. package/lib/cucumber/binding-decorator.d.ts +10 -10
  14. package/lib/cucumber/binding-decorator.js +180 -180
  15. package/lib/cucumber/binding-registry.d.ts +82 -82
  16. package/lib/cucumber/binding-registry.js +216 -218
  17. package/lib/cucumber/hook-decorators.d.ts +46 -46
  18. package/lib/cucumber/hook-decorators.js +102 -102
  19. package/lib/cucumber/managed-scenario-context.d.ts +21 -21
  20. package/lib/cucumber/managed-scenario-context.js +96 -95
  21. package/lib/cucumber/message-collector.d.ts +81 -80
  22. package/lib/cucumber/message-collector.js +251 -241
  23. package/lib/cucumber/parallel/coordinator.d.ts +79 -78
  24. package/lib/cucumber/parallel/coordinator.js +247 -228
  25. package/lib/cucumber/parallel/run-worker.d.ts +1 -1
  26. package/lib/cucumber/parallel/run-worker.js +31 -31
  27. package/lib/cucumber/parallel/worker.d.ts +30 -31
  28. package/lib/cucumber/parallel/worker.js +104 -104
  29. package/lib/cucumber/run-cucumber.d.ts +14 -14
  30. package/lib/cucumber/run-cucumber.js +117 -117
  31. package/lib/cucumber/runtime.d.ts +25 -25
  32. package/lib/cucumber/runtime.js +39 -39
  33. package/lib/cucumber/step-definition-decorators.d.ts +24 -24
  34. package/lib/cucumber/step-definition-decorators.js +91 -91
  35. package/lib/cucumber/utils.d.ts +16 -16
  36. package/lib/cucumber/utils.js +77 -77
  37. package/lib/esnode.js +19 -19
  38. package/lib/esvue.d.ts +1 -1
  39. package/lib/esvue.js +41 -41
  40. package/lib/formatters/behave-json-formatter.d.ts +49 -49
  41. package/lib/formatters/behave-json-formatter.js +75 -75
  42. package/lib/formatters/tsflow-snippet-syntax.d.ts +9 -9
  43. package/lib/formatters/tsflow-snippet-syntax.js +90 -93
  44. package/lib/gherkin/configuration.d.ts +30 -30
  45. package/lib/gherkin/configuration.js +26 -26
  46. package/lib/gherkin/gherkin-feature.d.ts +28 -28
  47. package/lib/gherkin/gherkin-feature.js +333 -335
  48. package/lib/gherkin/gherkin-manager.d.ts +29 -29
  49. package/lib/gherkin/gherkin-manager.js +114 -113
  50. package/lib/gherkin/models.d.ts +45 -45
  51. package/lib/gherkin/models.js +2 -2
  52. package/lib/index.d.ts +4 -4
  53. package/lib/index.js +22 -22
  54. package/lib/snippet.d.ts +1 -1
  55. package/lib/snippet.js +27 -27
  56. package/lib/transpilers/esbuild-transpiler.d.ts +4 -4
  57. package/lib/transpilers/esbuild-transpiler.js +19 -21
  58. package/lib/transpilers/esbuild.d.ts +12 -12
  59. package/lib/transpilers/esbuild.js +54 -54
  60. package/lib/transpilers/vue-sfc/compiler.d.ts +7 -7
  61. package/lib/transpilers/vue-sfc/compiler.js +21 -21
  62. package/lib/transpilers/vue-sfc/index.d.ts +23 -23
  63. package/lib/transpilers/vue-sfc/index.js +47 -45
  64. package/lib/transpilers/vue-sfc/main.d.ts +8 -8
  65. package/lib/transpilers/vue-sfc/main.js +248 -248
  66. package/lib/transpilers/vue-sfc/script.d.ts +5 -5
  67. package/lib/transpilers/vue-sfc/script.js +41 -41
  68. package/lib/transpilers/vue-sfc/template.d.ts +8 -8
  69. package/lib/transpilers/vue-sfc/template.js +101 -101
  70. package/lib/transpilers/vue-sfc/types.d.ts +55 -55
  71. package/lib/transpilers/vue-sfc/types.js +2 -2
  72. package/lib/transpilers/vue-sfc/utils/descriptorCache.d.ts +13 -13
  73. package/lib/transpilers/vue-sfc/utils/descriptorCache.js +67 -67
  74. package/lib/transpilers/vue-sfc/utils/error.d.ts +3 -3
  75. package/lib/transpilers/vue-sfc/utils/error.js +22 -22
  76. package/lib/transpilers/vue-sfc/utils/query.d.ts +13 -13
  77. package/lib/transpilers/vue-sfc/utils/query.js +35 -35
  78. package/lib/tsnode.js +17 -17
  79. package/lib/tsvue.d.ts +1 -1
  80. package/lib/tsvue.js +39 -39
  81. package/lib/types/scenario-context.d.ts +16 -16
  82. package/lib/types/scenario-context.js +17 -17
  83. package/lib/types/scenario-info.d.ts +16 -16
  84. package/lib/types/scenario-info.js +23 -21
  85. package/lib/types/step-binding-flags.d.ts +53 -53
  86. package/lib/types/step-binding-flags.js +58 -58
  87. package/lib/types/step-binding.d.ts +50 -50
  88. package/lib/types/step-binding.js +17 -17
  89. package/lib/types/types.d.ts +21 -21
  90. package/lib/types/types.js +2 -2
  91. package/lib/utils/helpers.d.ts +6 -6
  92. package/lib/utils/helpers.js +17 -17
  93. package/lib/utils/logger.d.ts +3 -3
  94. package/lib/utils/logger.js +29 -29
  95. package/lib/utils/our-callsite.d.ts +27 -27
  96. package/lib/utils/our-callsite.js +73 -71
  97. package/lib/version.d.ts +1 -1
  98. package/lib/version.js +5 -5
  99. package/package.json +58 -58
package/package.json CHANGED
@@ -1,58 +1,58 @@
1
- {
2
- "name": "@lynxwall/cucumber-tsflow",
3
- "description": "Provides 'specflow' like bindings for CucumberJS 8.5.0+ in TypeScript 1.7+.",
4
- "version": "5.1.3",
5
- "author": "Lonnie Wall <lynxdev@lynxwall.com>",
6
- "license": "MIT",
7
- "main": "./lib/index",
8
- "types": "./lib/index",
9
- "keywords": [
10
- "testing",
11
- "bdd",
12
- "cucumber",
13
- "cucumberJS",
14
- "gherkin",
15
- "tests",
16
- "typescript",
17
- "specflow",
18
- "vue3"
19
- ],
20
- "repository": {
21
- "type": "git",
22
- "url": "https://github.com/lynxwall/cucumber-js-tsflow.git"
23
- },
24
- "dependencies": {
25
- "@cucumber/cucumber": "~8.6.0",
26
- "@jeanbenitez/logical-expression-parser": "^1.0.0",
27
- "@rollup/pluginutils": "^4.2.1",
28
- "@types/node": "17.0.45",
29
- "chalk": "^4.1.2",
30
- "esbuild": "^0.14.54",
31
- "glob": "^8.0.3",
32
- "hash-sum": "^2.0.0",
33
- "jsdom": "^20.0.0",
34
- "jsdom-global": "^3.0.2",
35
- "lodash.merge": "^4.6.2",
36
- "log4js": "^6.6.1",
37
- "require-extension-hooks": "^0.3.3",
38
- "rollup": "^2.79.1",
39
- "short-uuid": "^4.2.0",
40
- "source-map-support": "^0.5.21",
41
- "ts-node": "^10.9.1",
42
- "tsconfig-paths": "^3.14.1",
43
- "typescript": "~4.6.4",
44
- "underscore": "^1.13.4",
45
- "verror": "^1.10.1"
46
- },
47
- "devDependencies": {
48
- "@types/debug": "^4.1.7",
49
- "@types/glob": "^7.2.0",
50
- "@types/hash-sum": "^1.0.0",
51
- "@types/lodash.merge": "^4.6.7",
52
- "@types/source-map-support": "^0.5.6",
53
- "@types/underscore": "1.11.4",
54
- "@types/verror": "^1.10.6"
55
- },
56
- "bin": "./bin/cucumber-tsflow"
57
- }
58
-
1
+ {
2
+ "name": "@lynxwall/cucumber-tsflow",
3
+ "description": "Provides 'specflow' like bindings for CucumberJS 9.1.0+ in TypeScript 4.0+.",
4
+ "version": "6.0.2",
5
+ "author": "Lonnie Wall <lynxdev@lynxwall.com>",
6
+ "license": "MIT",
7
+ "main": "./lib/index",
8
+ "types": "./lib/index",
9
+ "keywords": [
10
+ "testing",
11
+ "bdd",
12
+ "cucumber",
13
+ "cucumberJS",
14
+ "gherkin",
15
+ "tests",
16
+ "typescript",
17
+ "specflow",
18
+ "tsflow",
19
+ "vue3"
20
+ ],
21
+ "repository": {
22
+ "type": "git",
23
+ "url": "https://github.com/lynxwall/cucumber-js-tsflow.git"
24
+ },
25
+ "dependencies": {
26
+ "@cucumber/cucumber": "~9.1.0",
27
+ "@jeanbenitez/logical-expression-parser": "~1.0.0",
28
+ "@rollup/pluginutils": "~5.0.2",
29
+ "@types/node": "~18.15.10",
30
+ "chalk": "~4.1.2",
31
+ "esbuild": "~0.17.14",
32
+ "glob": "~9.3.2",
33
+ "hash-sum": "~2.0.0",
34
+ "jsdom": "~21.1.1",
35
+ "jsdom-global": "~3.0.2",
36
+ "lodash.merge": "~4.6.2",
37
+ "log4js": "~6.9.1",
38
+ "require-extension-hooks": "~0.3.3",
39
+ "rollup": "~3.20.2",
40
+ "short-uuid": "~4.2.2",
41
+ "source-map-support": "~0.5.21",
42
+ "ts-node": "~10.9.1",
43
+ "tsconfig-paths": "~4.1.2",
44
+ "typescript": "~4.9.5",
45
+ "underscore": "~1.13.6",
46
+ "verror": "~1.10.1"
47
+ },
48
+ "devDependencies": {
49
+ "@types/debug": "~4.1.7",
50
+ "@types/glob": "~8.1.0",
51
+ "@types/hash-sum": "~1.0.0",
52
+ "@types/lodash.merge": "~4.6.7",
53
+ "@types/source-map-support": "~0.5.6",
54
+ "@types/underscore": "~1.11.4",
55
+ "@types/verror": "~1.10.6"
56
+ },
57
+ "bin": "./bin/cucumber-tsflow"
58
+ }