@argos-ci/core 2.5.2-alpha.1 → 2.6.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.d.ts +1 -1
  2. package/package.json +4 -4
package/dist/index.d.ts CHANGED
@@ -50,7 +50,7 @@ interface UploadParameters {
50
50
  /** Unique build ID for this parallel build */
51
51
  nonce: string;
52
52
  /** The number of parallel nodes being ran */
53
- total?: number;
53
+ total: number;
54
54
  /** The index of the parallel node */
55
55
  index?: number;
56
56
  } | false;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@argos-ci/core",
3
3
  "description": "Visual testing solution to avoid visual regression. The core component of Argos SDK that handles build creation.",
4
- "version": "2.5.2-alpha.1+fe38977",
4
+ "version": "2.6.0",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
7
7
  "types": "./dist/index.d.ts",
@@ -40,8 +40,8 @@
40
40
  "access": "public"
41
41
  },
42
42
  "dependencies": {
43
- "@argos-ci/api-client": "0.2.1-alpha.5+fe38977",
44
- "@argos-ci/util": "2.1.2-alpha.5+fe38977",
43
+ "@argos-ci/api-client": "0.3.0",
44
+ "@argos-ci/util": "2.1.1",
45
45
  "axios": "^1.7.4",
46
46
  "convict": "^6.2.4",
47
47
  "debug": "^4.3.6",
@@ -60,5 +60,5 @@
60
60
  "build": "rollup -c",
61
61
  "e2e": "node ./e2e/upload.cjs && node ./e2e/upload.mjs"
62
62
  },
63
- "gitHead": "fe389774403ee2b9857c38c02531ed0e79d6a4fd"
63
+ "gitHead": "fd9935c114e6a948eca173127947cebcf6381007"
64
64
  }