@lynxwall/cucumber-tsflow 5.0.4 → 5.0.7
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 +75 -51
- package/lib/behave.js +5 -15
- package/lib/cli/argv-parser.js +97 -107
- package/lib/cli/index.js +81 -96
- package/lib/cli/load-configuration.js +78 -89
- package/lib/cli/run.js +37 -47
- package/lib/cucumber/binding-decorator.js +164 -159
- package/lib/cucumber/binding-registry.js +198 -208
- package/lib/cucumber/hook-decorators.js +99 -109
- package/lib/cucumber/managed-scenario-context.js +71 -81
- package/lib/cucumber/message-collector.js +115 -125
- package/lib/cucumber/step-definition-decorators.js +86 -96
- package/lib/cucumber/utils.js +73 -83
- package/lib/esnode.js +3 -4
- package/lib/esvue.js +35 -46
- package/lib/formatters/behave-json-formatter.js +47 -58
- package/lib/formatters/tsflow-snippet-syntax.js +89 -99
- package/lib/gherkin/configuration.js +26 -36
- package/lib/gherkin/gherkin-feature.js +285 -295
- package/lib/gherkin/gherkin-manager.js +93 -103
- package/lib/gherkin/models.js +2 -12
- package/lib/index.js +9 -19
- package/lib/snippet.js +5 -15
- package/lib/transpilers/esbuild-transpiler.js +19 -29
- package/lib/transpilers/esbuild.js +51 -62
- package/lib/transpilers/vue-sfc/compiler.js +20 -30
- package/lib/transpilers/vue-sfc/index.d.ts +0 -2
- package/lib/transpilers/vue-sfc/index.js +44 -61
- package/lib/transpilers/vue-sfc/main.js +223 -235
- package/lib/transpilers/vue-sfc/script.js +40 -51
- package/lib/transpilers/vue-sfc/template.js +94 -105
- package/lib/transpilers/vue-sfc/types.js +2 -12
- package/lib/transpilers/vue-sfc/utils/descriptorCache.d.ts +1 -1
- package/lib/transpilers/vue-sfc/utils/descriptorCache.js +52 -62
- package/lib/transpilers/vue-sfc/utils/error.js +22 -32
- package/lib/transpilers/vue-sfc/utils/query.js +32 -42
- package/lib/tsnode.js +3 -4
- package/lib/tsvue.js +34 -45
- package/lib/types/scenario-context.js +4 -14
- package/lib/types/scenario-info.js +18 -28
- package/lib/types/step-binding-flags.js +57 -67
- package/lib/types/step-binding.js +4 -14
- package/lib/types/types.js +2 -12
- package/lib/utils/helpers.js +17 -27
- package/lib/utils/logger.js +7 -17
- package/lib/utils/our-callsite.d.ts +1 -0
- package/lib/utils/our-callsite.js +43 -50
- package/lib/version.d.ts +1 -1
- package/lib/version.js +6 -16
- package/package.json +12 -12
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 8.0.0+ in TypeScript 1.7+.",
|
|
4
|
-
"version": "5.0.
|
|
4
|
+
"version": "5.0.7",
|
|
5
5
|
"author": "Lonnie Wall <lynxdev@lynxwall.com>",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"main": "./lib/index",
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
"testing",
|
|
11
11
|
"bdd",
|
|
12
12
|
"cucumber",
|
|
13
|
+
"cucumberJS",
|
|
13
14
|
"gherkin",
|
|
14
15
|
"tests",
|
|
15
16
|
"typescript",
|
|
@@ -23,24 +24,23 @@
|
|
|
23
24
|
"dependencies": {
|
|
24
25
|
"@cucumber/cucumber": "^8.0.0",
|
|
25
26
|
"@jeanbenitez/logical-expression-parser": "^1.0.0",
|
|
26
|
-
"@rollup/pluginutils": "^4.2.
|
|
27
|
-
"@types/node": "17.0.
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
"glob": "^7.2.0",
|
|
27
|
+
"@rollup/pluginutils": "^4.2.1",
|
|
28
|
+
"@types/node": "17.0.24",
|
|
29
|
+
"chalk": "^4.1.2",
|
|
30
|
+
"esbuild": "^0.14.36",
|
|
31
|
+
"glob": "^8.0.1",
|
|
32
32
|
"hash-sum": "^2.0.0",
|
|
33
33
|
"jsdom": "^19.0.0",
|
|
34
34
|
"jsdom-global": "^3.0.2",
|
|
35
35
|
"lodash.merge": "^4.6.2",
|
|
36
|
-
"log4js": "^6.4.
|
|
36
|
+
"log4js": "^6.4.5",
|
|
37
37
|
"require-extension-hooks": "^0.3.3",
|
|
38
|
-
"rollup": "^2.70.
|
|
38
|
+
"rollup": "^2.70.2",
|
|
39
39
|
"short-uuid": "^4.2.0",
|
|
40
40
|
"source-map-support": "^0.5.21",
|
|
41
|
-
"ts-node": "^10.
|
|
42
|
-
"tsconfig-paths": "^3.14.
|
|
43
|
-
"typescript": "~4.6.
|
|
41
|
+
"ts-node": "^10.7.0",
|
|
42
|
+
"tsconfig-paths": "^3.14.1",
|
|
43
|
+
"typescript": "~4.6.3",
|
|
44
44
|
"underscore": "^1.13.2",
|
|
45
45
|
"verror": "^1.10.1"
|
|
46
46
|
},
|