@alwaysmeticulous/cli 2.33.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.
- package/dist/command-utils/common-options.d.ts +2 -2
- package/dist/command-utils/common-options.js +1 -1
- package/dist/commands/record/record.command.d.ts +1 -1
- package/dist/commands/record/record.command.js +1 -1
- package/dist/commands/replay/replay.command.d.ts +1 -1
- package/dist/commands/run-all-tests/run-all-tests.command.d.ts +1 -1
- package/package.json +5 -5
|
@@ -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:
|
|
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:
|
|
101
|
+
readonly default: true;
|
|
102
102
|
};
|
|
103
103
|
};
|
|
104
104
|
/**
|
|
@@ -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:
|
|
18
|
+
demandOption: false;
|
|
19
19
|
};
|
|
20
20
|
commitSha: {
|
|
21
21
|
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:
|
|
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:
|
|
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.
|
|
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.
|
|
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,12 +38,12 @@
|
|
|
38
38
|
"inquirer": "^8.2.4",
|
|
39
39
|
"luxon": "^3.2.1",
|
|
40
40
|
"pixelmatch": "^5.3.0",
|
|
41
|
-
"pngjs": "^
|
|
41
|
+
"pngjs": "^7.0.0",
|
|
42
42
|
"proper-lockfile": "^4.1.2",
|
|
43
43
|
"yargs": "^17.5.1"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@alwaysmeticulous/api": "^2.
|
|
46
|
+
"@alwaysmeticulous/api": "^2.34.0",
|
|
47
47
|
"@types/express": "^4.17.14",
|
|
48
48
|
"@types/proper-lockfile": "^4.1.2"
|
|
49
49
|
},
|
|
@@ -93,5 +93,5 @@
|
|
|
93
93
|
"coverageDirectory": "../coverage",
|
|
94
94
|
"testEnvironment": "node"
|
|
95
95
|
},
|
|
96
|
-
"gitHead": "
|
|
96
|
+
"gitHead": "2d87c57d10bb368950a1bf7d12d2da85ab701f00"
|
|
97
97
|
}
|