@argos-ci/core 0.11.0 → 0.11.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.
Files changed (2) hide show
  1. package/dist/index.mjs +1 -1
  2. package/package.json +2 -2
package/dist/index.mjs CHANGED
@@ -30,7 +30,7 @@ const mustBeCommit = (value)=>{
30
30
  };
31
31
  const mustBeArgosToken = (value)=>{
32
32
  if (value && value.length !== 40) {
33
- throw new Error("Must be a valid Argos repository token");
33
+ throw new Error("Invalid Argos repository token (must be 40 characters)");
34
34
  }
35
35
  };
36
36
  const schema = {
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": "0.11.0",
4
+ "version": "0.11.1",
5
5
  "scripts": {
6
6
  "prebuild": "rm -rf dist",
7
7
  "build": "rollup -c",
@@ -61,5 +61,5 @@
61
61
  "rollup-plugin-dts": "^6.0.1",
62
62
  "rollup-plugin-swc3": "^0.10.1"
63
63
  },
64
- "gitHead": "75d2c0c4dc539dd294d33fb67512ee332186ebeb"
64
+ "gitHead": "8e3c44d658f3abd5ce3ac1bc829e2754974a2125"
65
65
  }