@letsrunit/bdd 0.1.0 → 0.2.4
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/dist/index.d.ts +2 -2
- package/package.json +22 -12
package/dist/index.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import * as _letsrunit_gherkin from '@letsrunit/gherkin';
|
|
2
1
|
import * as _letsrunit_utils from '@letsrunit/utils';
|
|
2
|
+
import * as _letsrunit_gherkin from '@letsrunit/gherkin';
|
|
3
3
|
import { World as World$1 } from '@cucumber/cucumber';
|
|
4
4
|
import { BrowserContextOptions, Page } from '@playwright/test';
|
|
5
5
|
import { Readable } from 'node:stream';
|
|
6
6
|
|
|
7
|
-
declare const typeDefinitions: (_letsrunit_gherkin.ParameterTypeDefinition<_letsrunit_utils.Scalar | _letsrunit_utils.Scalar[]> | _letsrunit_gherkin.ParameterTypeDefinition<_letsrunit_gherkin.KeyCombo>
|
|
7
|
+
declare const typeDefinitions: (_letsrunit_gherkin.ParameterTypeDefinition<boolean> | _letsrunit_gherkin.ParameterTypeDefinition<_letsrunit_utils.Scalar | _letsrunit_utils.Scalar[]> | _letsrunit_gherkin.ParameterTypeDefinition<_letsrunit_gherkin.KeyCombo>)[];
|
|
8
8
|
|
|
9
9
|
interface World extends World$1<BrowserContextOptions> {
|
|
10
10
|
page: Page;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@letsrunit/bdd",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.4",
|
|
4
4
|
"description": "BDD step definitions for browser automation with letsrunit",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"testing",
|
|
@@ -12,16 +12,25 @@
|
|
|
12
12
|
"license": "MIT",
|
|
13
13
|
"repository": {
|
|
14
14
|
"type": "git",
|
|
15
|
-
"url": "https://github.com/letsrunit/letsrunit.git",
|
|
15
|
+
"url": "https://github.com/letsrunit-hq/letsrunit.git",
|
|
16
16
|
"directory": "packages/bdd"
|
|
17
17
|
},
|
|
18
|
-
"bugs": "https://github.com/letsrunit/letsrunit/issues",
|
|
19
|
-
"homepage": "https://github.com/letsrunit/letsrunit#readme",
|
|
20
|
-
"private": false,
|
|
18
|
+
"bugs": "https://github.com/letsrunit-hq/letsrunit/issues",
|
|
19
|
+
"homepage": "https://github.com/letsrunit-hq/letsrunit#readme",
|
|
21
20
|
"type": "module",
|
|
22
21
|
"main": "./dist/index.js",
|
|
23
22
|
"publishConfig": {
|
|
24
|
-
"access": "public"
|
|
23
|
+
"access": "public",
|
|
24
|
+
"main": "./dist/index.js",
|
|
25
|
+
"module": "./dist/index.js",
|
|
26
|
+
"types": "./dist/index.d.ts",
|
|
27
|
+
"exports": {
|
|
28
|
+
".": {
|
|
29
|
+
"types": "./dist/index.d.ts",
|
|
30
|
+
"import": "./dist/index.js",
|
|
31
|
+
"default": "./dist/index.js"
|
|
32
|
+
}
|
|
33
|
+
}
|
|
25
34
|
},
|
|
26
35
|
"files": [
|
|
27
36
|
"dist",
|
|
@@ -38,10 +47,10 @@
|
|
|
38
47
|
"packageManager": "yarn@4.10.3",
|
|
39
48
|
"dependencies": {
|
|
40
49
|
"@cucumber/cucumber-expressions": "^18.1.0",
|
|
41
|
-
"@letsrunit/gherkin": "
|
|
42
|
-
"@letsrunit/mailbox": "
|
|
43
|
-
"@letsrunit/playwright": "
|
|
44
|
-
"@letsrunit/utils": "
|
|
50
|
+
"@letsrunit/gherkin": "0.2.4",
|
|
51
|
+
"@letsrunit/mailbox": "0.2.4",
|
|
52
|
+
"@letsrunit/playwright": "0.2.4",
|
|
53
|
+
"@letsrunit/utils": "0.2.4",
|
|
45
54
|
"@playwright/test": "^1.57.0",
|
|
46
55
|
"iso-639-1": "^3.1.5",
|
|
47
56
|
"metascraper": "^5.49.15",
|
|
@@ -59,7 +68,8 @@
|
|
|
59
68
|
"exports": {
|
|
60
69
|
".": {
|
|
61
70
|
"types": "./dist/index.d.ts",
|
|
62
|
-
"import": "./dist/index.js"
|
|
71
|
+
"import": "./dist/index.js",
|
|
72
|
+
"default": "./dist/index.js"
|
|
63
73
|
}
|
|
64
74
|
}
|
|
65
|
-
}
|
|
75
|
+
}
|