@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.
Files changed (34) hide show
  1. package/dist/command-utils/command-builder.d.ts +10 -0
  2. package/dist/command-utils/command-builder.js +19 -0
  3. package/dist/command-utils/common-options.d.ts +82 -82
  4. package/dist/commands/bootstrap/bootstrap.command.d.ts +2 -4
  5. package/dist/commands/bootstrap/bootstrap.command.js +6 -6
  6. package/dist/commands/create-test/create-test.command.d.ts +76 -7
  7. package/dist/commands/create-test/create-test.command.js +48 -51
  8. package/dist/commands/debug-replay/debug-replay.command.d.ts +35 -13
  9. package/dist/commands/debug-replay/debug-replay.command.js +38 -38
  10. package/dist/commands/download-replay/download-replay.command.d.ts +10 -7
  11. package/dist/commands/download-replay/download-replay.command.js +13 -13
  12. package/dist/commands/download-session/download-session.command.d.ts +10 -7
  13. package/dist/commands/download-session/download-session.command.js +13 -13
  14. package/dist/commands/record/record.command.d.ts +37 -2
  15. package/dist/commands/record/record.command.js +40 -40
  16. package/dist/commands/replay/replay.command.d.ts +114 -4
  17. package/dist/commands/replay/replay.command.js +73 -69
  18. package/dist/commands/run-all-tests/run-all-tests.command.d.ts +90 -17
  19. package/dist/commands/run-all-tests/run-all-tests.command.js +53 -54
  20. package/dist/commands/screenshot-diff/screenshot-diff.command.d.ts +26 -9
  21. package/dist/commands/screenshot-diff/screenshot-diff.command.js +20 -22
  22. package/dist/commands/serve/serve.command.d.ts +10 -7
  23. package/dist/commands/serve/serve.command.js +13 -13
  24. package/dist/commands/show-project/show-project.command.d.ts +6 -6
  25. package/dist/commands/show-project/show-project.command.js +9 -9
  26. package/dist/commands/update-tests/update-tests.command.d.ts +21 -9
  27. package/dist/commands/update-tests/update-tests.command.js +24 -23
  28. package/dist/commands/upload-build/upload-build.command.d.ts +13 -8
  29. package/dist/commands/upload-build/upload-build.command.js +16 -16
  30. package/dist/deflake-tests/deflake-tests.handler.d.ts +2 -1
  31. package/dist/deflake-tests/deflake-tests.handler.js +2 -1
  32. package/dist/parallel-tests/parallel-tests.handler.js +1 -0
  33. package/dist/tsconfig.tsbuildinfo +1 -1
  34. package/package.json +4 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alwaysmeticulous/cli",
3
- "version": "2.5.2",
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.0",
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.3.3"
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": "64ed4e6ea193692566f9d918cb546d2d07c4a4b1"
78
+ "gitHead": "64ed834147c80969801071fb6bedb9b7e809bffd"
79
79
  }