@code-pushup/cli 0.8.8 → 0.8.9
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/index.js +1 -1
- package/package.json +43 -3
package/index.js
CHANGED
|
@@ -1645,7 +1645,7 @@ function auditOutputsCorrelateWithPluginOutput(auditOutputs, pluginConfigAudits)
|
|
|
1645
1645
|
|
|
1646
1646
|
// packages/core/package.json
|
|
1647
1647
|
var name = "@code-pushup/core";
|
|
1648
|
-
var version = "0.8.
|
|
1648
|
+
var version = "0.8.9";
|
|
1649
1649
|
|
|
1650
1650
|
// packages/core/src/lib/implementation/collect.ts
|
|
1651
1651
|
async function collect(options2) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@code-pushup/cli",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.9",
|
|
4
4
|
"bin": {
|
|
5
5
|
"code-pushup": "index.js"
|
|
6
6
|
},
|
|
@@ -10,5 +10,45 @@
|
|
|
10
10
|
"yargs": "^17.7.2",
|
|
11
11
|
"chalk": "^5.3.0",
|
|
12
12
|
"@code-pushup/utils": "*"
|
|
13
|
-
}
|
|
14
|
-
|
|
13
|
+
},
|
|
14
|
+
"license": "MIT",
|
|
15
|
+
"homepage": "https://github.com/code-pushup/cli#readme",
|
|
16
|
+
"bugs": {
|
|
17
|
+
"url": "https://github.com/code-pushup/cli/issues"
|
|
18
|
+
},
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "https://github.com/code-pushup/cli.git",
|
|
22
|
+
"directory": "packages/cli"
|
|
23
|
+
},
|
|
24
|
+
"contributors": [
|
|
25
|
+
{
|
|
26
|
+
"name": "Igor Katsuba",
|
|
27
|
+
"email": "igor@katsuba.dev",
|
|
28
|
+
"url": "https://katsuba.dev"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"name": "Kateřina Pilátová",
|
|
32
|
+
"email": "katerina.pilatova@flowup.cz",
|
|
33
|
+
"url": "https://github.com/Tlacenka"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"name": "Matěj Chalk",
|
|
37
|
+
"email": "matej.chalk@flowup.cz",
|
|
38
|
+
"url": "https://github.com/matejchalk"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"name": "Michael Hladky",
|
|
42
|
+
"email": "michael.hladky@push-based.io",
|
|
43
|
+
"url": "https://push-based.io"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"name": "Michael Seredenko",
|
|
47
|
+
"email": "misha.seredenko@push-based.io",
|
|
48
|
+
"url": "https://github.com/MishaSeredenkoPushBased"
|
|
49
|
+
}
|
|
50
|
+
],
|
|
51
|
+
"type": "module",
|
|
52
|
+
"main": "./index.js",
|
|
53
|
+
"types": "./src/index.d.ts"
|
|
54
|
+
}
|