@alwaysmeticulous/cli 2.5.2 → 2.5.5
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/command-utils/command-builder.d.ts +10 -0
- package/dist/command-utils/command-builder.js +19 -0
- package/dist/command-utils/common-options.d.ts +82 -82
- package/dist/commands/bootstrap/bootstrap.command.d.ts +2 -4
- package/dist/commands/bootstrap/bootstrap.command.js +6 -6
- package/dist/commands/create-test/create-test.command.d.ts +76 -7
- package/dist/commands/create-test/create-test.command.js +48 -51
- package/dist/commands/debug-replay/debug-replay.command.d.ts +35 -13
- package/dist/commands/debug-replay/debug-replay.command.js +38 -38
- package/dist/commands/download-replay/download-replay.command.d.ts +10 -7
- package/dist/commands/download-replay/download-replay.command.js +13 -13
- package/dist/commands/download-session/download-session.command.d.ts +10 -7
- package/dist/commands/download-session/download-session.command.js +13 -13
- package/dist/commands/record/record.command.d.ts +37 -2
- package/dist/commands/record/record.command.js +40 -40
- package/dist/commands/replay/replay.command.d.ts +114 -4
- package/dist/commands/replay/replay.command.js +73 -69
- package/dist/commands/run-all-tests/run-all-tests.command.d.ts +90 -17
- package/dist/commands/run-all-tests/run-all-tests.command.js +53 -54
- package/dist/commands/screenshot-diff/screenshot-diff.command.d.ts +26 -9
- package/dist/commands/screenshot-diff/screenshot-diff.command.js +20 -22
- package/dist/commands/serve/serve.command.d.ts +10 -7
- package/dist/commands/serve/serve.command.js +13 -13
- package/dist/commands/show-project/show-project.command.d.ts +6 -6
- package/dist/commands/show-project/show-project.command.js +9 -9
- package/dist/commands/update-tests/update-tests.command.d.ts +21 -9
- package/dist/commands/update-tests/update-tests.command.js +24 -23
- package/dist/commands/upload-build/upload-build.command.d.ts +13 -8
- package/dist/commands/upload-build/upload-build.command.js +16 -16
- package/dist/deflake-tests/deflake-tests.handler.d.ts +2 -1
- package/dist/deflake-tests/deflake-tests.handler.js +2 -1
- package/dist/parallel-tests/parallel-tests.handler.js +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alwaysmeticulous/cli",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.5",
|
|
4
4
|
"description": "The Meticulous CLI",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"cli:dev": "ts-node src/main.ts"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@alwaysmeticulous/common": "^2.5.
|
|
27
|
+
"@alwaysmeticulous/common": "^2.5.3",
|
|
28
28
|
"@sentry/node": "^7.2.0",
|
|
29
29
|
"adm-zip": "^0.5.9",
|
|
30
30
|
"archiver": "^5.3.1",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"peerDependencies": {
|
|
46
46
|
"@alwaysmeticulous/record": "^2.3.3",
|
|
47
47
|
"@alwaysmeticulous/replay-debugger": "^2.3.3",
|
|
48
|
-
"@alwaysmeticulous/replayer": "^2.
|
|
48
|
+
"@alwaysmeticulous/replayer": "^2.5.1"
|
|
49
49
|
},
|
|
50
50
|
"peerDependenciesMeta": {
|
|
51
51
|
"@alwaysmeticulous/record": {
|
|
@@ -75,5 +75,5 @@
|
|
|
75
75
|
"bugs": {
|
|
76
76
|
"url": "https://github.com/alwaysmeticulous/meticulous-sdk/issues"
|
|
77
77
|
},
|
|
78
|
-
"gitHead": "
|
|
78
|
+
"gitHead": "64ed834147c80969801071fb6bedb9b7e809bffd"
|
|
79
79
|
}
|