@cucumber/cucumber 10.1.0 → 10.2.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/lib/api/convert_configuration.js.map +1 -1
- package/lib/api/environment.d.ts +6 -1
- package/lib/api/environment.js +6 -1
- package/lib/api/environment.js.map +1 -1
- package/lib/api/formatters.d.ts +2 -2
- package/lib/api/formatters.js.map +1 -1
- package/lib/api/index.d.ts +6 -2
- package/lib/api/index.js +4 -2
- package/lib/api/index.js.map +1 -1
- package/lib/api/load_configuration.d.ts +3 -3
- package/lib/api/load_configuration.js +7 -6
- package/lib/api/load_configuration.js.map +1 -1
- package/lib/api/load_sources.d.ts +4 -3
- package/lib/api/load_sources.js +5 -6
- package/lib/api/load_sources.js.map +1 -1
- package/lib/api/load_support.d.ts +4 -5
- package/lib/api/load_support.js +4 -6
- package/lib/api/load_support.js.map +1 -1
- package/lib/api/run_cucumber.d.ts +5 -5
- package/lib/api/run_cucumber.js +16 -18
- package/lib/api/run_cucumber.js.map +1 -1
- package/lib/api/runtime.d.ts +2 -2
- package/lib/api/runtime.js.map +1 -1
- package/lib/api/support.d.ts +2 -2
- package/lib/api/support.js.map +1 -1
- package/lib/api/types.d.ts +170 -26
- package/lib/api/types.js.map +1 -1
- package/lib/cli/helpers.d.ts +4 -4
- package/lib/cli/helpers.js.map +1 -1
- package/lib/configuration/check_schema.js +2 -2
- package/lib/configuration/check_schema.js.map +1 -1
- package/lib/configuration/types.d.ts +125 -9
- package/lib/configuration/types.js.map +1 -1
- package/lib/filter/types.d.ts +8 -0
- package/lib/filter/types.js.map +1 -1
- package/lib/formatter/builder.d.ts +3 -3
- package/lib/formatter/builder.js.map +1 -1
- package/lib/formatter/helpers/issue_helpers.d.ts +2 -2
- package/lib/formatter/helpers/issue_helpers.js.map +1 -1
- package/lib/formatter/helpers/test_case_attempt_formatter.d.ts +2 -2
- package/lib/formatter/helpers/test_case_attempt_formatter.js.map +1 -1
- package/lib/formatter/helpers/test_case_attempt_parser.d.ts +2 -2
- package/lib/formatter/helpers/test_case_attempt_parser.js.map +1 -1
- package/lib/formatter/index.d.ts +3 -7
- package/lib/formatter/index.js.map +1 -1
- package/lib/index.d.ts +13 -5
- package/lib/index.js +16 -7
- package/lib/index.js.map +1 -1
- package/lib/publish/index.d.ts +1 -0
- package/lib/publish/index.js +15 -0
- package/lib/publish/index.js.map +1 -1
- package/lib/publish/publish_plugin.d.ts +1 -1
- package/lib/publish/publish_plugin.js.map +1 -1
- package/lib/publish/types.d.ts +14 -0
- package/lib/{models/pickle_order.js → publish/types.js} +1 -1
- package/lib/publish/types.js.map +1 -0
- package/lib/runtime/assemble_test_cases.d.ts +2 -2
- package/lib/runtime/assemble_test_cases.js.map +1 -1
- package/lib/runtime/index.d.ts +2 -2
- package/lib/runtime/index.js.map +1 -1
- package/lib/runtime/parallel/coordinator.d.ts +2 -2
- package/lib/runtime/parallel/coordinator.js.map +1 -1
- package/lib/runtime/parallel/worker.js.map +1 -1
- package/lib/runtime/test_case_runner.d.ts +2 -2
- package/lib/runtime/test_case_runner.js.map +1 -1
- package/lib/support_code_library_builder/index.d.ts +2 -2
- package/lib/support_code_library_builder/index.js.map +1 -1
- package/lib/support_code_library_builder/types.d.ts +1 -1
- package/lib/support_code_library_builder/types.js.map +1 -1
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/lib/version.js.map +1 -1
- package/lib/wrapper.mjs +2 -1
- package/package.json +11 -6
- package/lib/models/pickle_order.d.ts +0 -1
- package/lib/models/pickle_order.js.map +0 -1
package/package.json
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"gherkin",
|
|
9
9
|
"tests"
|
|
10
10
|
],
|
|
11
|
-
"version": "10.1
|
|
11
|
+
"version": "10.2.1",
|
|
12
12
|
"homepage": "https://github.com/cucumber/cucumber-js",
|
|
13
13
|
"author": "Julien Biezemans <jb@jbpros.com>",
|
|
14
14
|
"contributors": [
|
|
@@ -253,8 +253,7 @@
|
|
|
253
253
|
"devDependencies": {
|
|
254
254
|
"@cucumber/compatibility-kit": "14.1.0",
|
|
255
255
|
"@cucumber/query": "12.0.1",
|
|
256
|
-
"@microsoft/api-
|
|
257
|
-
"@microsoft/api-extractor": "7.33.7",
|
|
256
|
+
"@microsoft/api-extractor": "7.39.0",
|
|
258
257
|
"@sinonjs/fake-timers": "10.0.2",
|
|
259
258
|
"@types/chai": "4.3.4",
|
|
260
259
|
"@types/chai-xml": "^0.3.2",
|
|
@@ -305,6 +304,8 @@
|
|
|
305
304
|
"stream-to-string": "1.2.0",
|
|
306
305
|
"ts-node": "10.9.1",
|
|
307
306
|
"tsd": "0.25.0",
|
|
307
|
+
"typedoc": "^0.25.4",
|
|
308
|
+
"typedoc-plugin-extras": "^3.0.0",
|
|
308
309
|
"typescript": "4.9.4"
|
|
309
310
|
},
|
|
310
311
|
"overrides": {
|
|
@@ -313,8 +314,9 @@
|
|
|
313
314
|
"scripts": {
|
|
314
315
|
"build-local": "genversion --es6 src/version.ts && tsc --build tsconfig.node.json && shx cp src/wrapper.mjs lib/ && shx cp src/api/wrapper.mjs lib/api/",
|
|
315
316
|
"cck-test": "mocha 'compatibility/**/*_spec.ts'",
|
|
316
|
-
"docs
|
|
317
|
-
"
|
|
317
|
+
"exports-generate-docs": "typedoc",
|
|
318
|
+
"exports-test": "api-extractor run --config exports/api/api-extractor.json --verbose && api-extractor run --config exports/root/api-extractor.json --verbose",
|
|
319
|
+
"exports-update": "api-extractor run --config exports/api/api-extractor.json --verbose --local && api-extractor run --config exports/root/api-extractor.json --verbose --local",
|
|
318
320
|
"feature-test": "node bin/cucumber.js",
|
|
319
321
|
"lint-code-autofix": "eslint --fix \"{compatibility,example,features,scripts,src,test}/**/*.ts\"",
|
|
320
322
|
"lint-code": "eslint \"{compatibility,example,features,scripts,src,test}/**/*.ts\"",
|
|
@@ -322,6 +324,9 @@
|
|
|
322
324
|
"lint-format-autofix": "prettier --write .",
|
|
323
325
|
"lint-format": "prettier --check .",
|
|
324
326
|
"lint": "npm run lint-code && npm run lint-format && npm run lint-dependencies",
|
|
327
|
+
"preexports-generate-docs": "npm run build-local",
|
|
328
|
+
"preexports-test": "npm run build-local",
|
|
329
|
+
"preexports-update": "npm run build-local",
|
|
325
330
|
"prelint-autofix": "npm run build-local",
|
|
326
331
|
"prelint-code": "npm run build-local",
|
|
327
332
|
"precck-test": "npm run build-local",
|
|
@@ -330,7 +335,7 @@
|
|
|
330
335
|
"pretest-coverage": "npm run build-local",
|
|
331
336
|
"pretypes-test": "npm run build-local",
|
|
332
337
|
"test-coverage": "nyc --silent mocha 'src/**/*_spec.ts' 'compatibility/**/*_spec.ts' && nyc --silent --no-clean node bin/cucumber.js --tags \"not @source-mapping\" && nyc report --reporter=lcov",
|
|
333
|
-
"test": "npm run lint && npm run types-test && npm run unit-test && npm run cck-test && npm run feature-test",
|
|
338
|
+
"test": "npm run lint && npm run exports-test && npm run types-test && npm run unit-test && npm run cck-test && npm run feature-test",
|
|
334
339
|
"types-test": "tsd",
|
|
335
340
|
"unit-test": "mocha 'src/**/*_spec.ts'",
|
|
336
341
|
"update-dependencies": "npx npm-check-updates --upgrade"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export type PickleOrder = 'defined' | 'random' | string;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"pickle_order.js","sourceRoot":"","sources":["../../src/models/pickle_order.ts"],"names":[],"mappings":"","sourcesContent":["export type PickleOrder = 'defined' | 'random' | string\n"]}
|