@argos-ci/cli 2.4.0 → 2.4.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/dist/index.mjs +1 -1
- package/package.json +3 -3
package/dist/index.mjs
CHANGED
|
@@ -51,7 +51,7 @@ function finalizeCommand(program) {
|
|
|
51
51
|
nonce: options.parallelNonce
|
|
52
52
|
}
|
|
53
53
|
});
|
|
54
|
-
spinner.succeed(`Builds finalized: ${result.builds.map((b)=>b.url).join(", ")}`);
|
|
54
|
+
spinner.succeed(result.builds.length === 0 ? "No builds to finalize" : `Builds finalized: ${result.builds.map((b)=>b.url).join(", ")}`);
|
|
55
55
|
} catch (error) {
|
|
56
56
|
if (error instanceof Error) {
|
|
57
57
|
spinner.fail(`Failed to finalize: ${error.message}`);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@argos-ci/cli",
|
|
3
3
|
"description": "Visual testing solution to avoid visual regression. Argos CLI is used to interact with and upload screenshots to argos-ci.com via command line.",
|
|
4
|
-
"version": "2.4.
|
|
4
|
+
"version": "2.4.1",
|
|
5
5
|
"bin": {
|
|
6
6
|
"argos": "./bin/argos-cli.js"
|
|
7
7
|
},
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"access": "public"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@argos-ci/core": "2.
|
|
38
|
+
"@argos-ci/core": "2.7.0",
|
|
39
39
|
"commander": "^12.1.0",
|
|
40
40
|
"ora": "^8.0.1",
|
|
41
41
|
"update-notifier": "^7.2.0"
|
|
@@ -45,5 +45,5 @@
|
|
|
45
45
|
"build": "rollup -c",
|
|
46
46
|
"e2e": "node e2e/upload.js"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "d5b9650164fd482ee2b4dbf5c93fcef591f447eb"
|
|
49
49
|
}
|