@argos-ci/cli 2.4.0 → 2.4.2-alpha.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.
Files changed (2) hide show
  1. package/dist/index.mjs +1 -1
  2. 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.0",
4
+ "version": "2.4.2-alpha.0+4ed9b25",
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.6.0",
38
+ "@argos-ci/core": "2.7.1-alpha.0+4ed9b25",
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": "fd9935c114e6a948eca173127947cebcf6381007"
48
+ "gitHead": "4ed9b253b5037f2111d44bcd41fe3467371c41e3"
49
49
  }