@argos-ci/core 2.7.1-alpha.1 → 2.8.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.cjs +12 -2
- package/package.json +4 -4
package/dist/index.cjs
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
|
-
exports.upload = async (
|
|
1
|
+
exports.upload = async (...args)=>{
|
|
2
2
|
// @ts-ignore
|
|
3
3
|
const { upload } = await import('./index.mjs');
|
|
4
|
-
return upload(
|
|
4
|
+
return upload(...args);
|
|
5
|
+
};
|
|
6
|
+
exports.finalize = async (...args)=>{
|
|
7
|
+
// @ts-ignore
|
|
8
|
+
const { finalize } = await import('./index.mjs');
|
|
9
|
+
return finalize(...args);
|
|
10
|
+
};
|
|
11
|
+
exports.readConfig = async (...args)=>{
|
|
12
|
+
// @ts-ignore
|
|
13
|
+
const { readConfig } = await import('./index.mjs');
|
|
14
|
+
return readConfig(...args);
|
|
5
15
|
};
|
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.
|
|
4
|
+
"version": "2.8.1",
|
|
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.
|
|
44
|
-
"@argos-ci/util": "2.1.
|
|
43
|
+
"@argos-ci/api-client": "0.5.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": "
|
|
63
|
+
"gitHead": "e711cad38854fb0ec6aa96587ed4b49490b8add0"
|
|
64
64
|
}
|