@alwaysmeticulous/cli 2.34.0 → 2.35.0

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.
@@ -76,7 +76,7 @@ export declare const OPTIONS: {
76
76
  readonly storyboard: {
77
77
  readonly boolean: true;
78
78
  readonly description: "Take a storyboard of screenshots during simulation";
79
- readonly default: false;
79
+ readonly default: true;
80
80
  };
81
81
  readonly essentialFeaturesOnly: {
82
82
  readonly boolean: true;
@@ -98,7 +98,7 @@ export declare const SCREENSHOT_DIFF_OPTIONS: {
98
98
  storyboard: {
99
99
  readonly boolean: true;
100
100
  readonly description: "Take a storyboard of screenshots during simulation";
101
- readonly default: false;
101
+ readonly default: true;
102
102
  };
103
103
  };
104
104
  /**
@@ -89,7 +89,7 @@ exports.OPTIONS = {
89
89
  storyboard: {
90
90
  boolean: true,
91
91
  description: "Take a storyboard of screenshots during simulation",
92
- default: false,
92
+ default: true,
93
93
  },
94
94
  essentialFeaturesOnly: {
95
95
  boolean: true,
@@ -15,7 +15,7 @@ export declare const recordCommandHandler: (options: RecordCommandHandlerOptions
15
15
  export declare const recordCommand: import("yargs").CommandModule<unknown, import("yargs").InferredOptionTypes<{
16
16
  apiToken: {
17
17
  string: true;
18
- demandOption: true;
18
+ demandOption: false;
19
19
  };
20
20
  commitSha: {
21
21
  string: true;
@@ -106,7 +106,7 @@ exports.recordCommand = (0, command_builder_1.buildCommand)("record")
106
106
  .options({
107
107
  apiToken: {
108
108
  string: true,
109
- demandOption: true,
109
+ demandOption: false,
110
110
  },
111
111
  commitSha: {
112
112
  string: true,
@@ -61,7 +61,7 @@ export declare const replayCommand: import("yargs").CommandModule<unknown, impor
61
61
  storyboard: {
62
62
  readonly boolean: true;
63
63
  readonly description: "Take a storyboard of screenshots during simulation";
64
- readonly default: false;
64
+ readonly default: true;
65
65
  };
66
66
  headless: {
67
67
  readonly boolean: true;
@@ -13,7 +13,7 @@ export declare const runAllTestsCommand: import("yargs").CommandModule<unknown,
13
13
  readonly storyboard: {
14
14
  readonly boolean: true;
15
15
  readonly description: "Take a storyboard of screenshots during simulation";
16
- readonly default: false;
16
+ readonly default: true;
17
17
  };
18
18
  readonly headless: {
19
19
  readonly boolean: true;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alwaysmeticulous/cli",
3
- "version": "2.34.0",
3
+ "version": "2.35.0",
4
4
  "description": "The Meticulous CLI",
5
5
  "license": "ISC",
6
6
  "main": "dist/index.js",
@@ -25,7 +25,7 @@
25
25
  "test": "jest"
26
26
  },
27
27
  "dependencies": {
28
- "@alwaysmeticulous/common": "^2.34.0",
28
+ "@alwaysmeticulous/common": "^2.35.0",
29
29
  "@sentry/node": "^7.36.0",
30
30
  "@sentry/tracing": "^7.36.0",
31
31
  "adm-zip": "^0.5.9",
@@ -38,7 +38,7 @@
38
38
  "inquirer": "^8.2.4",
39
39
  "luxon": "^3.2.1",
40
40
  "pixelmatch": "^5.3.0",
41
- "pngjs": "^6.0.0",
41
+ "pngjs": "^7.0.0",
42
42
  "proper-lockfile": "^4.1.2",
43
43
  "yargs": "^17.5.1"
44
44
  },
@@ -93,5 +93,5 @@
93
93
  "coverageDirectory": "../coverage",
94
94
  "testEnvironment": "node"
95
95
  },
96
- "gitHead": "239b51bf54a4114e6134d1a4d38bb1f992284af4"
96
+ "gitHead": "2d87c57d10bb368950a1bf7d12d2da85ab701f00"
97
97
  }