@allurereport/ci 3.8.2 → 3.10.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.
- package/README.md +0 -2
- package/dist/detect.d.ts +1 -1
- package/dist/detectors/local.d.ts +4 -1
- package/dist/detectors/local.js +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +8 -7
package/README.md
CHANGED
package/dist/detect.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import type { CiDescriptor } from "@allurereport/core-api";
|
|
2
|
-
export declare const detect: () => CiDescriptor
|
|
2
|
+
export declare const detect: () => CiDescriptor;
|
|
@@ -1,2 +1,5 @@
|
|
|
1
|
-
import { type CiDescriptor } from "@allurereport/core-api";
|
|
1
|
+
import { type CiDescriptor, CiType } from "@allurereport/core-api";
|
|
2
2
|
export declare const local: CiDescriptor;
|
|
3
|
+
export declare const isLocalCiDescriptor: (ci: CiDescriptor) => ci is Omit<CiDescriptor, "type"> & {
|
|
4
|
+
type: CiType.Local;
|
|
5
|
+
};
|
package/dist/detectors/local.js
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@allurereport/ci",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.10.0",
|
|
4
4
|
"description": "Utilities set to get useful report data from different CI",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"allure",
|
|
@@ -30,15 +30,16 @@
|
|
|
30
30
|
"lint:fix": "oxlint --import-plugin --fix src test features stories"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@allurereport/core-api": "3.
|
|
33
|
+
"@allurereport/core-api": "3.10.0"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@types/node": "^20
|
|
36
|
+
"@types/node": "^20",
|
|
37
37
|
"@vitest/runner": "^2.1.8",
|
|
38
38
|
"@vitest/snapshot": "^2.1.8",
|
|
39
|
-
"allure-
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"
|
|
39
|
+
"allure-js-commons": "^3",
|
|
40
|
+
"allure-vitest": "^3",
|
|
41
|
+
"rimraf": "^6",
|
|
42
|
+
"typescript": "^5",
|
|
43
|
+
"vitest": "^4.1.0"
|
|
43
44
|
}
|
|
44
45
|
}
|