@tramvai/test-integration 7.1.0 → 7.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/app/buildCli.es.js +5 -0
- package/lib/app/buildCli.js +5 -0
- package/lib/app/startCli.es.js +5 -0
- package/lib/app/startCli.js +5 -0
- package/package.json +3 -3
package/lib/app/buildCli.es.js
CHANGED
|
@@ -35,6 +35,11 @@ const buildCli = async (targetOrConfig, { env, logger = console, ...cliOptions }
|
|
|
35
35
|
experiments: {
|
|
36
36
|
transpilation: {
|
|
37
37
|
loader: 'swc',
|
|
38
|
+
include: [
|
|
39
|
+
'@tinkoff/request',
|
|
40
|
+
'@tramvai/module-dev-tools',
|
|
41
|
+
'@tramvai-tinkoff/module-push-web',
|
|
42
|
+
],
|
|
38
43
|
},
|
|
39
44
|
},
|
|
40
45
|
}, targetOrConfig),
|
package/lib/app/buildCli.js
CHANGED
|
@@ -44,6 +44,11 @@ const buildCli = async (targetOrConfig, { env, logger = console, ...cliOptions }
|
|
|
44
44
|
experiments: {
|
|
45
45
|
transpilation: {
|
|
46
46
|
loader: 'swc',
|
|
47
|
+
include: [
|
|
48
|
+
'@tinkoff/request',
|
|
49
|
+
'@tramvai/module-dev-tools',
|
|
50
|
+
'@tramvai-tinkoff/module-push-web',
|
|
51
|
+
],
|
|
47
52
|
},
|
|
48
53
|
},
|
|
49
54
|
}, targetOrConfig),
|
package/lib/app/startCli.es.js
CHANGED
|
@@ -49,6 +49,11 @@ const startCli = async (targetOrConfig, { enableRebuild = false, env, logger = c
|
|
|
49
49
|
experiments: {
|
|
50
50
|
transpilation: {
|
|
51
51
|
loader: 'swc',
|
|
52
|
+
include: [
|
|
53
|
+
'@tinkoff/request',
|
|
54
|
+
'@tramvai/module-dev-tools',
|
|
55
|
+
'@tramvai-tinkoff/module-push-web',
|
|
56
|
+
],
|
|
52
57
|
},
|
|
53
58
|
// Playwright Inspector collects a stack trace for the ability to show in which file or step of the test a transition occurred
|
|
54
59
|
// internak stack trace utility uses process.cwd() to correctly calculate the path to the files
|
package/lib/app/startCli.js
CHANGED
|
@@ -58,6 +58,11 @@ const startCli = async (targetOrConfig, { enableRebuild = false, env, logger = c
|
|
|
58
58
|
experiments: {
|
|
59
59
|
transpilation: {
|
|
60
60
|
loader: 'swc',
|
|
61
|
+
include: [
|
|
62
|
+
'@tinkoff/request',
|
|
63
|
+
'@tramvai/module-dev-tools',
|
|
64
|
+
'@tramvai-tinkoff/module-push-web',
|
|
65
|
+
],
|
|
61
66
|
},
|
|
62
67
|
// Playwright Inspector collects a stack trace for the ability to show in which file or step of the test a transition occurred
|
|
63
68
|
// internak stack trace utility uses process.cwd() to correctly calculate the path to the files
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tramvai/test-integration",
|
|
3
|
-
"version": "7.1
|
|
3
|
+
"version": "7.2.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"typings": "lib/index.d.ts",
|
|
@@ -21,14 +21,14 @@
|
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@tinkoff/mocker": "7.0.1",
|
|
24
|
-
"@tramvai/test-helpers": "7.1
|
|
24
|
+
"@tramvai/test-helpers": "7.2.1",
|
|
25
25
|
"env-ci": "^5.0.2",
|
|
26
26
|
"utility-types": "^3.10.0",
|
|
27
27
|
"wait-on": "^5.3.0"
|
|
28
28
|
},
|
|
29
29
|
"peerDependencies": {
|
|
30
30
|
"@tinkoff/utils": "^2.1.2",
|
|
31
|
-
"@tramvai/cli": "7.1
|
|
31
|
+
"@tramvai/cli": "7.2.1",
|
|
32
32
|
"tslib": "^2.4.0"
|
|
33
33
|
},
|
|
34
34
|
"license": "Apache-2.0",
|