@code-pushup/cli 0.34.0 → 0.35.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/index.js +3 -3
- package/package.json +4 -4
package/index.js
CHANGED
|
@@ -1672,7 +1672,7 @@ function formatDiffGroupsSection(diff) {
|
|
|
1672
1672
|
return "";
|
|
1673
1673
|
}
|
|
1674
1674
|
return paragraphs(
|
|
1675
|
-
h2("\u{
|
|
1675
|
+
h2("\u{1F5C3}\uFE0F Groups"),
|
|
1676
1676
|
formatGroupsOrAuditsDetails("group", diff.groups, {
|
|
1677
1677
|
headings: [
|
|
1678
1678
|
"\u{1F50C} Plugin",
|
|
@@ -1736,7 +1736,7 @@ function formatGroupsOrAuditsDetails(token, { changed, unchanged }, table) {
|
|
|
1736
1736
|
}
|
|
1737
1737
|
function formatScoreChange(diff) {
|
|
1738
1738
|
const marker = getDiffMarker(diff);
|
|
1739
|
-
const text = formatDiffNumber(Math.round(diff *
|
|
1739
|
+
const text = formatDiffNumber(Math.round(diff * 1e3) / 10);
|
|
1740
1740
|
return colorByScoreDiff(`${marker} ${text}`, diff);
|
|
1741
1741
|
}
|
|
1742
1742
|
function formatValueChange({
|
|
@@ -2061,7 +2061,7 @@ var verboseUtils = (verbose = false) => ({
|
|
|
2061
2061
|
|
|
2062
2062
|
// packages/core/package.json
|
|
2063
2063
|
var name = "@code-pushup/core";
|
|
2064
|
-
var version = "0.
|
|
2064
|
+
var version = "0.35.0";
|
|
2065
2065
|
|
|
2066
2066
|
// packages/core/src/lib/implementation/execute-plugin.ts
|
|
2067
2067
|
import chalk5 from "chalk";
|
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@code-pushup/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.35.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"bin": {
|
|
6
6
|
"code-pushup": "index.js"
|
|
7
7
|
},
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@code-pushup/models": "0.
|
|
10
|
-
"@code-pushup/core": "0.
|
|
9
|
+
"@code-pushup/models": "0.35.0",
|
|
10
|
+
"@code-pushup/core": "0.35.0",
|
|
11
11
|
"yargs": "^17.7.2",
|
|
12
12
|
"chalk": "^5.3.0",
|
|
13
|
-
"@code-pushup/utils": "0.
|
|
13
|
+
"@code-pushup/utils": "0.35.0"
|
|
14
14
|
},
|
|
15
15
|
"homepage": "https://github.com/code-pushup/cli#readme",
|
|
16
16
|
"bugs": {
|